Quote:
Originally Posted by JSWolf
Why would you want <i> and <em> to be normal? That just defeats the purpose.
|
To differentiate an emphasized word within other words that are already italicized/emphasized...
Code:
.internaldialog {font-style:italic}
.internaldialog em {font-style:normal}
<p class="internaldialog">She thought to herself, "<em>Snow White</em>
is fairer than me‽"</p>
or, the way I like to do it:
Code:
em {font-style:italic}
em em {font-style:normal}
<p><em>She thought to herself, "<em>Snow White</em>
is fairer than me‽"</em></p>
She thought to herself, "Snow White
is fairer than me‽"