Quote:
Originally Posted by JSWolf
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}