Quote:
Originally Posted by murg
I think you are mistaken. I have my <small> set to .7em in the CSS and it displays properly.
|
<small>SOME TEXT</small> will display at a smaller size even if the .7em you've defined doesn't work.
Try the following and see if it works...
CSS
Code:
.small {
font-size: .7em;
}
XML
Code:
<p>Some text. <span class="small">SOME MORE TEXT</span>. Even more text.</p>
I have a feeling it won't work.