2013-05-08 59 views

回答

5

是的。

正式語法:[[] [] [font-style'> || || <'font-weight'> || <'font-stretch'>]? <'font-size'> [/ <'line-height'>]? <'font-family'>] |標題|圖標|菜單| message-box |小標題|狀態欄

參見:http://www.w3.org/TR/CSS2/fonts.html#font-shorthand

一些例子:

p { font: 12px/14px sans-serif } 
p { font: 80% sans-serif } 
p { font: x-large/110% "New Century Schoolbook", serif } 
p { font: bold italic large Palatino, serif } 
p { font: normal small-caps 120%/120% fantasy } 
+0

感謝您的指導。 – Blynn 2013-05-08 19:31:03

0

是的,它是,就像你說的,用font

p { font: bold italic large Palatino, serif } 

從文檔:

font屬性是,除了如下面所描述的,一個縮寫屬性爲在樣式表中的同一個地方設置font-stylefont-variantfont-weightfont-sizeline-heightfont-family

相關問題