Table of Contents
字体样式属性
font-size:字号大小
font-family:字体
font-weight:字体粗细
font-style:字体风格
font:综合设置字体样式
CSS文本外观属性
color:文本颜色
letter-spacing:字间距
word-spacing:单词间距
line-height:行间距
text-decoration:文本装饰
text-align:水平对齐方式
text-indent:首行缩进
white-space:空白符处理
word-break:自动换行
word-wrap:单词换行
Home Web Front-end HTML Tutorial Properties needed for CSS text layout

Properties needed for CSS text layout

Jun 24, 2017 pm 02:00 PM
css study Commonly used typesetting letter notes

字体样式属性

font-size:字号大小

font-size属性用于设置字号,该属性的值可以使用相对长度单位,也可以使用绝对长度单位。其中,相对长度单位比较常用,推荐使用像素单位px,绝对长度单位使用较少。

绝对单位可选参数值:xx-small | x-small | small | medium | large | x-large | xx-large|smaller | larger

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>font-size:字号大小</title> 6  7     <style type="text/css"> 8         #p1 {font-size: 14pt;} 9         #p2 {font-size: 16pt;}10         #p3 {font-size: x-small;}11         #p4 {font-size: small;}12         #p5 {font-size: medium;}13         #p6 {font-size: large;}14         #p7 {font-size: xx-large;}15     </style>16 </head>17 <body>18     <p id="p1">font-size:字号大小</p>19     <p id="p2">font-size:字号大小</p>20     <p id="p3">font-size:字号大小</p>21     <p id="p4">font-size:字号大小</p>22     <p id="p5">font-size:字号大小</p>23     <p id="p6">font-size:字号大小</p>24     <p id="p7">font-size:字号大小</p>25 </body>26 </html>
Copy after login

font-family:字体

font-family属性用于设置字体。网页中常用的字体有宋体、微软雅黑、黑体等,例如将网页中所有段落文本的字体设置为微软雅黑,可以使用如下CSS样式代码:

p {font-family:"微软雅黑";
}
Copy after login

可以同时指定多个字体,中间以逗号隔开,表示如果浏览器不支持第一个字体,则会尝试下一个,直到找到合适的字体。如果字体名称包含空格或中文,则应使用引号括起

p {font-family:"Times New Roman", "宋体";
}
Copy after login

使用font-family设置字体时,需要注意以下几点:    

  • 各种字体之间必须使用英文状态下的逗号隔开

  • 中文字体需要加英文状态下的引号,英文字体一般不需要加引号。当需要设置英文字体时,英文字体名必须位于中文字体名之前

  • 如果字体名中包含空格、#、$等符号,则该字体必须加英文状态下的单引号或双引号,例如font-family: "Times New Roman";

  • 尽量使用系统默认字体,保证在任何用户的浏览器中都能正确显示

  • 在 CSS 中设置字体名称,直接写中文是可以的。但是在文件编码(GB2312、UTF-8 等)不匹配时会产生乱码的错误。为此,在 CSS 直接使用 Unicode 编码来写字体名称可以避免这些错误。使用 Unicode 写中文字体名称,浏览器是可以正确的解析的。font-family: "\5FAE\8F6F\96C5\9ED1",表示设置字体为“微软雅黑”。可以通过escape() 来得到

escape()用法:

 %u5FAE%u8F6F%u96C5%u9ED1这个就是中文字体“微软雅黑”,其对应的Unicode编码为“\5FAE\8F6F\96C5\9ED1”,注意需要把%u改成\,否则会出错

 为了更安全的设置,一般会在字体的最后面加上sans-serif,如

p {font-family:"Times New Roman", "宋体", "sans-serif";
}
Copy after login
  • 前面的字体都查找失败后,在系统中找一种sans-serif字体作为默认字体

  • 注意顺序,如果把sans-serif放前面去,后面的都失效了

font-weight:字体粗细

font-weight属性用于定义字体的粗细,其可用属性值:normal、bold、bolder、lighter、100~900(100的整数倍),有继承性。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>font-family:字体</title> 6  7     <style type="text/css"> 8         #p1 {font-weight: normal;} 9         #p2 {font-weight: bold;}10         #p3 {font-weight: bolder;}11         #p4 {font-weight: lighter;}12         #p5 {font-weight: 300;}13         #p6 {font-weight: 800;}14     </style>15 </head>16 <body>17     <p id="p1">font-size:字号大小</p>18     <p id="p2">font-size:字号大小</p>19     <p id="p3">font-size:字号大小</p>20     <p id="p4">font-size:字号大小</p>21     <p id="p5">font-size:字号大小</p>22     <p id="p6">font-size:字号大小</p>23 </body>24 </html>
Copy after login

font-style:字体风格

font-style属性用于定义字体风格,如设置斜体、倾斜或正常字体,其可用属性值如下:

  • normal:默认值,浏览器会显示标准的字体样式。

  • italic:浏览器会使用斜体的字体样式显示,如果字体没有斜体,那么正常显示字体。

  • oblique:浏览器会让文字倾斜显示。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>font-style:字体风格</title> 6  7     <style type="text/css"> 8         p.normal {font-style:normal} 9         p.italic {font-style:italic}10         p.oblique {font-style:oblique}11     </style>12 </head>13 <body>14     <p class="normal">浏览器显示一个标准的字体样式</p>15     <p class="italic">浏览器会显示一个斜体的字体样式</p>16     <p class="oblique">浏览器会显示一个倾斜的字体样式</p>17 </body>18 </html>
Copy after login

font:综合设置字体样式

如果需要同时设置字体的大小,样式,粗细风格等,那么需要一个一个的设置,像下面这样

1 <style type="text/css">2     p {3         font-size: 20px;4         font-family: "\5b8b\4f53";5         font-weight: bold;6         font-style: oblique;7     }8 </style>
Copy after login

那么这是很繁琐的,这时可以用font来综合设置字体的相关属性,其基本语法为

选择器{font: font-style  font-weight  font-size/line-height  font-family;}
Copy after login

使用font属性时,必须按上面语法格式中的顺序书写,各个属性以空格隔开。font-size和font-family的值是必需的。如果缺少了其他值,默认值将被插入,如果有默认值的话。

用font之后的效果

<style type="text/css">
    p {font: oblique bold 20px "\5b8b\4f53"}    </style>
Copy after login

CSS文本外观属性

color:文本颜色

color属性用于定义文本的颜色,其取值方式有如下3种:

  • 预定义的颜色值,如red,green,blue等。

  • 十六进制,如#FF0000,#FF6600,#29D794等。实际工作中,十六进制是最常用的定义颜色的方式。

  • RGB代码,如红色可以表示为rgb(255,0,0)或rgb(100%,0%,0%)。

需要注意的是,如果使用RGB代码的百分比颜色值,取值为0时也不能省略百分号,必须写为0%。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>color</title> 6  7     <style type="text/css"> 8         div {color: red;} 9         p {color: #FF0000;}10         span {color: rgb(255,0,0);}11     </style>12 </head>13 <body>14     <div>这是一个div</div>15     <p>这是一个段落</p>16     <span>这是一个span</span>17 </body>18 </html>
Copy after login

letter-spacing:字间距

letter-spacing属性用于定义字间距,所谓字间距就是字符与字符之间的空白。其属性值可为不同单位的数值,允许使用负值,默认为normal。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>letter-spacing</title> 6  7     <style type="text/css"> 8         div {letter-spacing: 5px;} 9     </style>10 </head>11 <body>12     <div>这是一个div</div>13 </body>14 </html>
Copy after login

word-spacing:单词间距

word-spacing属性用于定义英文单词之间的间距,对中文字符无效。和letter-spacing一样,其属性值可为不同单位的数值,允许使用负值,默认为normal。
word-spacing和letter-spacing均可对英文进行设置,不同的是letter-spacing定义的为字母之间的间距,而word-spacing定义的为英文单词之间的间距。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>word-spacing</title> 6     <style type="text/css"> 7         div {word-spacing: 50px;} 8     </style> 9 </head>10 <body>11     <div>这是一个div div例子,word-spacing属性对中文无效</div>12 </body>13 </html>
Copy after login

line-height:行间距

line-height属性用于设置行间距,就是行与行之间的距离,即字符的垂直间距,一般称为行高。line-height常用的属性值单位有三种,分别为像素px,相对值em和百分比%,实际工作中使用最多的是像素px。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>line-height</title> 6     <style type="text/css"> 7         div {line-height: 50px;} 8     </style> 9 </head>10 <body>11     <div>这是一个div</div>12     <div>这是一个div</div>13     <div>这是一个div</div>14 </body>15 </html>
Copy after login

text-decoration:文本装饰

text-decoration属性用于设置文本的下划线,上划线,删除线等装饰效果,其可用属性值如下:

  • 删除线

  • none:没有装饰(正常文本默认值)。

  • underline:下划线。

  • overline:上划线。

  • line-through:删除线。

另外,text-decoration后可以赋多个值,用于给文本添加多种显示效果,例如希望文字同时有下划线和删除线效果,就可以将underline和line-through同时赋给text-decoration。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>text-decoration</title> 6     <style type="text/css"> 7         div {text-decoration: underline overline line-through;} 8     </style> 9 </head>10 <body>11     <div>给文字添加下划线,上划线,删除线</div>12 </body>13 </html>
Copy after login

text-align:水平对齐方式

text-align属性用于设置文本内容的水平对齐,相当于html中的align对齐属性。其可用属性值如下:

  • left:左对齐(默认值)

  • right:右对齐

  • center:居中对齐

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>text-align</title><style type="text/css">div {text-align: right;}</style></head><body><div>设置文本内容水平右对齐</div></body></html>
Copy after login

text-indent:首行缩进

text-indent属性用于设置段落首行文本的缩进,只能设置于块级标签。其属性值可为不同单位的数值、em字符宽度的倍数、或相对于浏览器窗口宽度的百分比%,允许使用负值, 建议使用em作为设置单位

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>text-indent</title> 6     <style type="text/css"> 7         div {text-indent: 5em;} 8     </style> 9 </head>10 11 <body>12     <div>13         设置段落首行文本的缩进设置段落首行文本的缩进设置段落首行文本的缩进设置段落首行文本的缩进设置段落首行文本的缩进14     </div>15 </body>16 </html>
Copy after login

white-space:空白符处理

使用HTML制作网页时,不论源代码中有多少空格,在浏览器中只会显示一个字符的空白。在CSS中,使用white-space属性可设置空白符的处理方式,其属性值如下:

  • normal:常规(默认值),文本中的空格、空行无效,满行(到达区域边界)后自动换行。

  • pre:预格式化,按文档的书写格式保留空格、空行原样显示。

  • nowrap:空格空行无效,强制文本不能换行,除非遇到换行标记
    。内容超出元素的边界也不换行,若超出浏览器页面则会自动增加滚动条。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>white-space</title> 6     <style type="text/css"> 7         .pre { 8             white-space: pre; 9         }10 11         .nowrap {12             white-space: nowrap;13         }14     </style>15 </head>16 <body>17     <div class="pre">18         预格式化,按文档的书写格式保留空格、空行原样显示。19         预格式化,按文档的书写格式保留空格、空行原样显示。20         预格式化,按文档的书写格式保留空格、空行原样显示。21     
22 23     
24         空格空行无效,强制文本不能换行,除非遇到换行标记。
内容超出元素的边界也不换行,若超出浏览器页面则会自动增加滚动条。25         空格空行无效,强制文本不能换行,除非遇到换行标记。
内容超出元素的边界也不换行,若超出浏览器页面则会自动增加滚动条。26     
27 28 
Copy after login

word-break:自动换行

自动换行有以下3个可选值

  • normal     使用浏览器默认的换行规则,不打断单词显示。

  • break-all   允许在单词内换行。

  • keep-all    只能在半角空格或连字符处换行。

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>word-break</title> 6     <style type="text/css"> 7         .break-all {word-break: break-all;} 8         .keep-all {word-break: keep-all;} 9     </style>10 </head>11 <body>12     <div class="break-all">13         Allow the line to be changed within the word14         Allow the line to be changed within the word15         Allow the line to be changed within the word16         Allow the line to be changed within the word17         Allow the line to be changed within the word18     </div>19 20     <div class="keep-all">21         Allow the line to be changed within the word22         Allow the line to be changed within the word23         Allow the line to be changed within the word24     </div>25 </body>26 </html>
Copy after login

word-wrap:单词换行

该属性的作用是允许长单词或 URL 地址换行到下一行normal    

  • normal    只在允许的断字点换行(浏览器保持默认处理)。

  • break-word    在长单词或 URL 地址内部进行换行。几乎得到了浏览器的支持

 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4     <meta charset="UTF-8"> 5     <title>word-wrap</title> 6     <style type="text/css"> 7         div {word-wrap: break-word;} 8     </style> 9 </head>10 <body>11     <div>12         This attribute is used to allow long words or urls to be changed to the next line of normal13            http://www.xxxxxx.com14         This attribute is used to allow long words or urls to be changed to the next line of normal15     </div>16 </body>17 </html>
Copy after login

The above is the detailed content of Properties needed for CSS text layout. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Poe's new features are so powerful! Even with zero programming skills, you can create a meme editor in 10 minutes Poe's new features are so powerful! Even with zero programming skills, you can create a meme editor in 10 minutes Aug 02, 2024 am 12:23 AM

Editor of Machine Power Report: Is it necessary for Sia’s domestic large models to catch up quickly? Recently, Poe, an AI chat platform owned by Quora, a Q&A community in North America, launched a new feature called “Previews”. With this real-time preview feature, users can directly view and use web applications generated in Poe chat. That is to say, in Poe, you can chat with some LLMs who are very good at coding, such as Claude-3.5-Sonnet, GPT-4, Gemini1.5Pro. Code snippets, web design, games and other content generated during the chat can be previewed in this window and can be used for hands-on experience. When I tried it for the first time, the editor with zero programming knowledge was scared.

How to isolate styles in components in vue How to isolate styles in components in vue May 09, 2024 pm 03:57 PM

Style isolation in Vue components can be achieved in four ways: Use scoped styles to create isolated scopes. Use CSS Modules to generate CSS files with unique class names. Organize class names using BEM conventions to maintain modularity and reusability. In rare cases, it is possible to inject styles directly into the component, but this is not recommended.

15 commonly used currency circle escape index technology analysis 15 commonly used currency circle escape index technology analysis Mar 03, 2025 pm 05:48 PM

In-depth analysis of the top 15 Bitcoin Escape Index: Market Outlook for 2025 This article deeply analyzes fifteen commonly used Bitcoin Escape Index, among which the Bitcoin Rhodl ratio, USDT current wealth management and altcoin seasonal index have reached the Escape Index in 2024, attracting market attention. How should investors deal with potential risks? Let us interpret these indicators one by one and explore reasonable response strategies. 1. Detailed explanation of key indicators AHR999 coin hoarding indicator: Created by ahr999, assisting Bitcoin fixed investment strategy. The current value is 1.21, which is in the wait-and-see range, so it is recommended to be cautious. Link to AHR999 Escape Top Indicator: A supplement to AHR999 Coin Hoarding Indicator, used to identify the top of the market. The current value is 2.48, this week

How to register for Bitstamp exchange pro? Is it safe? Is it formal? How to register for Bitstamp exchange pro? Is it safe? Is it formal? Aug 13, 2024 pm 06:36 PM

How to register BitstampPro? Visit the BitstampPro website. Fill in your personal information and email address. Create a password and accept the terms. Verify email address. Is BitstampPro safe? Authentication required. Enforce the use of two-factor authentication. Most assets are stored in cold storage. Use HTTPS to encrypt communication. Conduct regular security audits. Is BitstampPro legitimate? Registered in Luxembourg. Regulated by the Luxembourg Financial Supervisory Committee. Comply with anti-money laundering and know-your-customer regulations.

How to implement the custom table function of clicking to add data in dcat admin? How to implement the custom table function of clicking to add data in dcat admin? Apr 01, 2025 am 07:09 AM

How to implement the table function of custom click to add data in dcatadmin (laravel-admin) When using dcat...

The latest ranking list of virtual currency trading platform APP (inventory of top 10 virtual currency trading platforms) The latest ranking list of virtual currency trading platform APP (inventory of top 10 virtual currency trading platforms) Mar 04, 2025 pm 03:51 PM

This article lists the top ten leading cryptocurrency exchanges in the world, including OKX, Binance, Gate.io, Huobi, Kraken, Coinbase, KuCoin, Crypto.com, Bitfinex and Bitstamp. With their strong technical strength, rich product lines, strict compliance operations and innovative ecological construction, these exchanges have taken the lead in the global cryptocurrency market. The article will introduce their special functions, technical architecture, security measures, compliance qualifications and ecosystem construction respectively, providing reference for investors to choose a suitable trading platform.

What is the format of the source file? What is the format of the source file? May 09, 2024 pm 10:51 PM

Source files are uncompiled files containing original code or data, and their formats vary between programming languages ​​and applications. Common formats include text files (.txt, .csv), programming languages ​​(such as .py, .java), markup languages ​​(such as .html, .css), image files (such as .png, .jpg), video files (such as .mp4, .avi), and other formats such as JSON (.json), PDF (.pdf), Word document (.doc), etc.

What does z-index mean? What does z-index mean? May 09, 2024 pm 11:21 PM

z-index is a CSS property that controls the order in which elements overlap on the page, similar to the order in which paper is stacked. Here's how it works: Every element has a default z-index value of 0. Elements with higher z-index values ​​will overwrite elements with lower z-index values. z-index can be used to create floating elements, control the order of overlapping elements, and create three-dimensional effects. When using, you need to consider things such as avoiding overuse, using negative values, and paying attention to browser compatibility.

See all articles