With the following test HTML:
And the following CSS:
The expected result would be:
But instead, I'm getting this:
The first letter ('T' in this case) is losing the emphasis tag for some reason...
<p class="Format"><em>Test of Some Text in Italic,</em> This is Normal Text.</p>
And the following CSS:
p.Format { text-transform:lowercase; }
p.Format:first-letter { text-transform:uppercase; }
The expected result would be:
Test of some text in italic, this is normal text.
But instead, I'm getting this:
Test of some text in italic, this is normal text.
The first letter ('T' in this case) is losing the emphasis tag for some reason...