YUI のリセット 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は再び通常になります。どうすれば修正できますか?