0

目前,我看到您可以执行以下操作:

body{
font-weight:bold;
font-style:italic;
}

有没有什么办法...

body{
font: bold italic???
}
4

2 回答 2

5

是的,通过CSS 速记字体规则

正式语法:[ [ <'font-style'> || || <'字体粗细'> || <'字体拉伸'> ]?<'font-size'> [ / <'line-height'> ]? <'字体家族'> ] | 标题 | 图标 | 菜单 | 消息框 | 小标题| 状态栏

另见: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 }
于 2013-05-08T19:22:50.137 回答
0

是的,就像你说的那样,使用font

p { font: bold italic large Palatino, serif }

从文档:

除了下面描述的之外,该font属性是设置font-stylefont-variantfont-weight、和的简写属性font-size,位于样式表中的同一位置。line-heightfont-family

于 2013-05-08T19:23:01.380 回答