YUI Reset CSS Fait <strong><em>ce n'travail</em></strong>

Cette ligne dans YUI est Reset CSS est à l'origine de la difficulté pour moi:

address,caption,cite,code,dfn,em,strong,th,var {
    font-style: normal;
    font-weight: normal;
}

Il rend mon em pas en italique et mon strong non gras. Ce qui est correct. Je sais comment faire pour remplacer celle de mon propre feuille de style.

strong, b 
{
  font-weight: bold;
}

em, i 
{
  font-style: italic;
}

Le problème vient quand j'ai un texte à la fois em et strong.

<strong>This is bold, <em>and this is italic, but not bold</em></strong>

Ma règle pour strong rend audacieux, mais YUI est la règle pour em rend de nouveau normal. Comment puis-je régler ce problème?

OriginalL'auteur Patrick McElhaney | 2008-08-21