normalize.css
为font-weight: bold;
和<b>
代码设置了<strong>
。
我希望font-style: italic;
和<i>
有<em>
,但它仅为font-style: italic;
代码指定<dfn>
。
https://github.com/necolas/normalize.css/blob/master/normalize.css#l118-l129
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
有什么特别的原因吗?
答案 0 :(得分:0)
<em>
和b,
strong {
font-weight: bold;
}
标记都是斜体。
标准化调整:
<b>
因为某些浏览器选择使用<strong>
而不是font-weight: bolder
来显示font-weight: bold
和/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
。如非minfied文件中所述:
{{1}}