font連寫屬性 font-style font-variant font-weight font-size/line-height font-family font-size與font-family為必填 font-style 可指定的值為: normal(正常) italic(斜體) obliq ...
font連寫屬性 font-style font-variant font-weight font-size/line-height font-family
font-size與font-family為必填
font-style 可指定的值為: normal(正常) italic(斜體) oblique(傾斜) inherit(繼承父元素)
font-variant值:normal(正常) small-caps(所有字母大寫&字型大小縮小) inherit(繼承父元素)
常用寫法:
div { font: 14px/60px "微軟雅黑",sans-serif; }
css3引入了@font-face規則,可指定伺服器字體
font-family與url必填
font-family font-weight font-style font-stretch unicode-range 可在@font-face中定義 其它不行
@font-face { font-family: myFont; src: url('Sansation_Light.ttf'), url('Sansation_Light.eot'); /* IE9+ */ font-weight: bold; } div { font-family:myFont; }
查閱資料:http://www.w3school.com.cn/css3/css3_font.asp