目前我看到你可以做类似的事情:
body{
font-weight:bold;
font-style:italic;
}
有办法吗...
body{
font: bold italic???
}
答案 0 :(得分:5)
是的,通过CSS shorthand font rule。
形式语法:[[<'font-style'> || || <“字体重量”> || <“字体拉伸”> ]? <“字体尺寸”> [/ <“行高”> ]? <“字体家庭”> ] |标题|图标|菜单| 消息框|小字幕|状态条
另请参阅: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 }
答案 1 :(得分:0)
是的,就像你说的那样,使用font
:
p { font: bold italic large Palatino, serif }
来自文档:
font
属性除了如下所述外,还有用于设置font-style
,font-variant
,font-weight
,font-size
,{{1}的简写属性}和line-height
在样式表的同一位置。