View Full Version : css that converts all text to CAPS


ham_let
07-01-2004, 10:14 PM
is there a code (text-decoration maybe?) that would convert all text into uppercase letters? i want to use this code:

<style type="text/css"><!-- font{font-family:Small Fonts;font-size:7px;letter-spacing:-0.2pt;line-height:8px}
</style>

but i have lots of text and the only way to see the (nice) font is to have all text in caps. would it be:

<style type="text/css"><!-- font{font-family:Small Fonts;font-size:7px;letter-spacing:-0.2pt;line-height:8px text-decoration:???}
</style>

or something? or is there a way at all?

MaGiCSuN
07-01-2004, 10:18 PM
add to your css:

text-transform: uppercase;

Love,
Mirna

ham_let
07-01-2004, 10:48 PM
thanks! :) :) :)

MaGiCSuN
07-02-2004, 01:45 PM
Your welcome :D