好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

CSS字体-竹间

1.font-family

不限长度的字体列表,字体包含空格须用引号包含如:"Times Now Roman"

通用字体族(所有操作系统都可用,作为备用字体放在列表末尾)

通用字体 包含的相关字体 serif Times, Times New Roman

sans-serif

(sans指无额外装饰,比serif更易阅读)

Arial, Helvetica monospace Courier, Courier New

2.font-size

不指定时,浏览器默认为16px(=1em)

在所有浏览器显示相同文本大小并允许缩放的解决方案——百分比+em:

 1   body { font-size :  100% ;}
 2   h1 { font-size :  2.5em ;}
 3   h2 { font-size :  1.875em ;}
 4   p { font-size :  0.875em ;} 

查看更多关于CSS字体-竹间的详细内容...

  阅读:36次