View Full Version : help with text


m613x
03-28-2006, 05:05 PM
im trying to type something with these css text "decorations"

{color: Blue; font-weight: normal; font-style: italics; background-color: transparent; text-decoration: none; border-top: 1px solid Blue; border-bottom: 1px solid Blue; border-left: 1px solid Blue; border-right: 1px solid Blue;}

and i dont know how! can anyone help me!

Arwen
03-28-2006, 06:42 PM
<style type="text/css">
body {
color: Blue; font-weight: normal; font-style: italic; background-color: transparent; text-decoration: none; border-top: 1px solid Blue; border-bottom: 1px solid Blue; border-left: 1px solid Blue; border-right: 1px solid Blue;}
</style>

Just insert this into your page and then type whatever you want. Note that your font-style attribute should be italic not italics. :)