Hi......
I want to use class in CSS , please tell me how to use class in CSS ? Please explain with an example ? I want to also know difference between class and div in CSS ?
Thanks............
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shen HengbinPosted Feb 25, 2012, 3:34 AM
then you can define it in your css file like below .
div .classname{
text-align:center;
background-color:#ffc;
font-weight:bold;
}
2, >> I want to also know difference between class and div in CSS ?
I don't know what's your mean. I guess you want to understand the difference between
div .classname and .classname and .classname div ?
div .classname : refers to all divs with the class 'classname'
.classname div : refers to all divs that are children of the element with the class 'classname'
.classname : refers to all elements with the class 'classname'