我试图简单地用字体速记使一些文本变为斜体。
到目前为止,我有这个;
font: 36px italic normal Georgia;
但它不起作用。字体可以定义为斜体,就像我设置font-style: italic;
它一样。
我试图简单地用字体速记使一些文本变为斜体。
到目前为止,我有这个;
font: 36px italic normal Georgia;
但它不起作用。字体可以定义为斜体,就像我设置font-style: italic;
它一样。
如果你在它被识别normal
后立即写36px italic
,或者说正常覆盖斜体。
像这样使用:font: italic normal 36px Georgia;
如果您像下面这样订购,使用字体的速记属性将是最好的结果
1. font-style
2. font-variant
3. font-weight
4. font-size/line-height
5. font-family
yep c-link said it...you can't specify italics and then right after that put "normal"....
shorthand should follow this order:
font:{font-style font-variant font-weight font-size/line-height font-family}
NOTE: font-family and font-size must be specified....if not they will be put at default values...