Quote:
Originally Posted by JSWolf
To do smallcaps, the characters have to be lowercase. Hence text-transform: lowercase;. If you are converting smallcaps done with a font size to real smallcaps, then you don't need to edit the uppercase text to make it lowercase.
|
You are incorrect Jon.
Please take the time to actually read what was written previously before making these blanket statements that are demonstrably false.
Here's an exercise for you:
Show us the html you would use to create the following (
make sure you keep the difference in font size between the upper and lower case letters) and you must use the upper-case glyph for all the lower-case letters:
"Now Is The Time For All Good Men To Come To The Aid Of Their Countries."
Here's mine:
Code:
.sc {font-variant:small-caps}
<p class="sc">Now Is The Time For All Good Men To Come To The Aid Of Their Countries.</p>