Quote:
Originally Posted by Turtle91
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>
|
Yes your code will work. But try this. You will not get small-caps.
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>
But the following code will work.
Code:
.sc {
font-variant: small-caps;
text-transform: lowercase;
}
<p>N<span class="sc">OW</span> I<span class="sc">S</span> T<span class="sc">HE</span> T<span class="sc">IME</span> F<span class="sc">OR</span> A<span class="sc">LL</span> G<span class="sc">OOD</span> M<span class="sc">EN</span> T<span class="sc">O</span> C<span class="sc">OME</span> T<span class="sc">O</span> T<span class="sc">HE</span> A<span class="sc">ID</span> O<span class="sc">F</span> T<span class="sc">HEIR</span> C<span class="sc">OUNTRIES</span>.</p>