当前位置: 首页 > 网络学院 > 网页制作基础教程 > CSS > CSS 字体
The CSS font properties define the font in text.
CSS字体属性可定义文字所使用的字体。
Set the font of a text
This example demonstrates how to set a font of a text.
设置一文字的字体
Set the size of the font
This example demonstrates how to set the size of a font.
设置字体的大小
Set the style of the font
This example demonstrates how to set the style of a font.
设置字体的样式
Set the variant of the font
This example demonstrates how to set the variant of a font.
设置字体的形态
Set the boldness of the font
This example demonstrates how to set the boldness of a font.
设置字体粗细
All the font properties in one declaration
This example demonstrates how to use the shorthand property for setting all of the font properties in one declaration.
一个声明搞定所有字体属性
The CSS font properties allow you to change the font family, boldness, size, and the style of a text.
CSS字体属性允许你改变字体以及它的粗细,大小和样式。
Note: In CSS1 fonts are identified by a font name. If a browser does not support the specified font, it will use a default font.
注意:在CSS1中字体由字体名称识别。如果浏览器不支持指定的字体,它将用默认字体替换。
Browser support: IE: Internet Explorer, F: Firefox, N: Netscape.
浏览器支持:IE: Internet Explorer, F: Firefox, N: Netscape.
W3C: The number in the "W3C" column indicates in which CSS recommendation the property is defined (CSS1 or CSS2).
W3C:里面的数字代表CSS版本号
Property属性 | Description描述 | Values值 | IE | F | N | W3C |
---|---|---|---|---|---|---|
font | A shorthand property for setting all of the properties for a font in one declaration 快速设置所有字体属性的声明 | font-style font-variant font-weight font-size/line-height font-family caption icon menu message-box small-caption status-bar | 4 | 1 | 4 | 1 |
font-family | A prioritized list of font family names and/or generic family names for an element 一份为元素准备的字体系列优先列表 | family-name generic-family | 3 | 1 | 4 | 1 |
font-size | Sets the size of a font 设置字体大小 | xx-small x-small small medium large x-large xx-large smaller larger length % | 3 | 1 | 4 | 1 |
font-size-adjust | Specifies an aspect value for an element that will preserve the x-height of the first-choice font 指定首选字体x高度 | none number | - | - | - | 2 |
font-stretch | Condenses or expands the current font-family 当前字体系列的合并或扩展 | normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded | - | - | - | 2 |
font-style | Sets the style of the font 设置字体样式 | normal italic oblique | 4 | 1 | 4 | 1 |
font-variant | Displays text in a small-caps font or a normal font 让字体显示为小号或正常 | normal small-caps | 4 | 1 | 6 | 1 |
font-weight | Sets the weight of a font 设置字体的粗细 | normal bold bolder lighter 100 200 300 400 500 600 700 800 900 | 4 | 1 | 4 | 1 |