View Single Post
Old 08-04-2022, 12:02 PM   #5
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,359
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by JSWolf View Post
I would do away with the font-size. It's not needed. Is there a reason for the letter spacing?
Code:
.sc {
  letter-spacing: 0.5pt;
  font-variant- small-caps;
  text-transform: lowercase;
}
That's the example the OP used...I was just showing him how to use Clips and classes vs inline styling.

I would not use letter-spacing either...unless there was a specific font/look that he was going for?? Same thing with the font...no need for font-size:1em as that is the default...unless the sc were being used in a section where the font-size had been changed to something else and he wanted the sc to stand out?? I also would not use text-transform: lowercase;...no need to force lowercase, I just type the letters using capital or lowercase letters as necessary.

my css would simply be:
Code:
.sc {font-variant: small-caps}

Last edited by Turtle91; 08-04-2022 at 12:05 PM.
Turtle91 is offline   Reply With Quote