+ 1
how to define class in css
2 Answers
0
defining a class in css...
first the class should be recorgonizable in the html source code.. ie
<p class = "summer"> Summer is near..</p>
then you introduce it in the compatible css source code by :
p.summer{ /*say*/
font-size :5px;
}
0
thanks......