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