View Single Post
Old 09-14-2022, 02:47 PM   #61
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,887
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Turtle91 View Post
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>

Last edited by JSWolf; 09-14-2022 at 03:56 PM.
JSWolf is offline   Reply With Quote