How to apply multiple css styles on single element
22 January 2010
180 views
No Comment
If you like to apply multiple styles on the single element, all you have to do is separate the style names by a space.
Example:
Lets say you have three classes
.a {..}
.b{..}
.c{..}
To apply them on a single div tag:
<div>
…..
</div>










Leave your response!