字体和常用文本和背景属性
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
字体和常用文本和背景属性
CSS字体属性
字体名称属性(font-family)
这个属性设定字体名称,如Arial, Tahoma, Courier等。例句如下:
.s1 {font-family:Arial}
.s1 {font-family:Arial}
.s2 {font-family:Tahoma}
.s3 {font-family:Courier}
.s4 {font-family:Verdana}
.s5 {font-family:"Book Antiqua"}
The font-family value of the text is the browser default font.
The fon-family value of the text is "Arial"。
The fon-family value of the text is "Tahoma"。
The fon-family value of the text is "Courer"。
The fon-family value of the text is "Verdana"。
The fon-family value of the text is "Book Antiqua"。
The font-family value of the text is the browser default font.
The fon-family value of the text is "Arial"。
The fon-family value of the text is "Tahoma"。
The fon-family value of the text is "Courer"。
The fon-family value of the text is "Verdana"。
The fon-family value of the text is "Book Antiqua"。
字体大小属性(font-size)
这个属性可以设置字体的大小。字体大小的设置可以有多种方式,最常用的就是pt和
px(pixel)。例句如下:
.s2 {font-size:16pt}
BODY{font-size:10pt}
.s1 {font-size:16px}
.s2 {font-size:16pt}
.s3 {font-size:80%}
.s4 {font-size:larger}
.s5 {font-size:xx-large}
这段文字大小是10pt。
这段文字大小是16px。
这段文字大小是16pt。
这段文字大小是10pt的80%。
这段文字的大小比10pt大。
这段文字的大小是特大号(xx-large)。
这段文字大小是10pt。
这段文字大小是16px。
这段文字大小是16pt。
这段文字大小是10pt的80%。
这段文字的大小比10pt大。
这段文字的大小是特大号(xx-large)。
字体浓淡属性(font-weight)
这个属性常用值是normal和bold,normal 是缺省值。例句如下:
这段文字字体的浓淡属性(font-weight)值是bold。
这段文字没有设浓淡属性。
这段文字字体的浓淡属性(font-weight)值是bold。
这段文字字体的浓淡属性(font-weight)值是lighter。
这段文字字体的浓淡属性值(font-weight)是200。
这段文字字体的浓淡属性值(font-weight)是800。
字体变量属性(font-variant)
这个属性有两个值,normal和small-caps,normal是缺省值。small-caps表示小的大写字体。例句如下:
.s1 {font-variant:small-caps}
字体属性(font)
这个属性是各种字体属性的一种快捷的综合写法。这个属性可以综合字体风格属性
(font-style),字体变量属性
(font-variant),字体浓淡属性
(font-weight),字体大小属性(font-size)等属性。例句如下:
.s1 {font:italic normal bold 11pt arial}
字体颜色(color)
字体颜色用CSS中的color属性来表示。参见CSS常用文本属性。
CSS常用文本属性
文本对齐属性(text-align)
这个属性用来设定文本的对齐方式。有以下值:
•left (居左,缺省值)
•right (居右)