YUI 的Reset CSS中的这一行给我带来了麻烦:
address,caption,cite,code,dfn,em,strong,th,var {
font-style: normal;
font-weight: normal;
}
它使我的em
不是斜体,我的strong
不是粗体。没关系。我知道如何在我自己的样式表中覆盖它。
strong, b
{
font-weight: bold;
}
em, i
{
font-style: italic;
}
当我的文本同时为em
和时,问题就出现了strong
。
<strong>This is bold, <em>and this is italic, but not bold</em></strong>
我的规则strong
使其粗体,但 YUI 的规则em
使其再次正常。我该如何解决?