Become a webdsign master


pma-design.com keyword stats



Most current MSN search phrases:

website  

How To Style Your Text With CSS

Styling text with CSS is really simple. We3.  Make  the  text  bold  or  Italic
can define colors, underline it, make it
bold,  define  the  font  etc  etc.You can use the font-style property to create
these  effects.
We  will  start  with  some  basics.
Bold:p  {font-weight:bold;
First we define the html where we will be
working  with.}
This  is  the  textItalicp  {font-style:italic;
1.  Colorize  your  text}
We can select the P tag and add some styles4. Overline, Underline, strike-through and
to  it.p  {color:red;none
}The text-decoration property is useful to
create the underline and the other effects we
Now our text will turn red. You can defineneed.p
any color code your want or choose one of the{text-decoration:underline;text-decoration:li
16 standard color names. The color names are:ne-through;text-decoration:overline;text-deco
aqua, black, blue, fuchsia, gray, green,ration:none;
lime, maroon, navy, olive, purple, red,
silver,  teal,  white  and  yellow.}
2. Define the size of your textpOn default, the text doesn't have any lines
{font-size:12px;at all. Except for the link. You can remove
the underline by using the
}text-decoration:none;  setting.
You can define any font-size you want, 145You see, it's quite easy to style your text
pixels is not a problem. That is, technicallyusing CSS. And you can do it all in a
speaking.separate stylesheet!



1 A B C D E 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128