目前我看見你可以這樣做:是否可以在一行中添加粗體和斜體是css?
body{
font-weight:bold;
font-style:italic;
}
有沒有辦法做到......通過CSS shorthand font rule
body{
font: bold italic???
}
目前我看見你可以這樣做:是否可以在一行中添加粗體和斜體是css?
body{
font-weight:bold;
font-style:italic;
}
有沒有辦法做到......通過CSS shorthand font rule
body{
font: bold italic???
}
是的。
正式語法:[[] [] [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 }
是的,它是,就像你說的,用font
:
p { font: bold italic large Palatino, serif }
從文檔:
的
font
屬性是,除了如下面所描述的,一個縮寫屬性爲在樣式表中的同一個地方設置font-style
,font-variant
,font-weight
,font-size
,line-height
和font-family
。
感謝您的指導。 – Blynn 2013-05-08 19:31:03