“CSS 2.1 参考手册/font-size”的版本间的差异
来自Blueidea
(新增页面) |
(→另见) |
||
(未显示同一用户的1个中间版本) | |||
第28行: | 第28行: | ||
*[[CSS 2.1 参考手册/font-style|font-style]] | *[[CSS 2.1 参考手册/font-style|font-style]] | ||
*[[CSS 2.1 参考手册/line-height|line-height]] | *[[CSS 2.1 参考手册/line-height|line-height]] | ||
− | *[[CSS 2.1 参考手册/font- | + | *[[CSS 2.1 参考手册/font-weight|font-weight]] |
*[[CSS 2.1 参考手册/font-variant|font-variant]] | *[[CSS 2.1 参考手册/font-variant|font-variant]] | ||
*原文地址:http://xhtml.com/en/css/reference/font-size/ | *原文地址:http://xhtml.com/en/css/reference/font-size/ | ||
[[category:CSS]] | [[category:CSS]] |
2007-11-17T18:30:09的最后版本
定义
font-size属性设置字体的大小,使用的时候最好使用关联性单位,比如em或百分比,这样用户就可以通过浏览器放大字体。
案例
body {font-size: 1em} h1 {font-size: 160%}
特性
可能的值
- 这其中的关键字之一: xx-small, x-small, small, medium, large, x-large 或 xx-large.
- 这其中的关键字之一: larger 或 smaller.
- 明确的字体大小。
- 明确的字体百分比。
- inherit:使用父元素相同的属性
默认值
medium
适用于
继承
是