Hello Jayprakash sharma Cascading Style Sheets (CSS) is
not case sensitive. However, font families, URLs to images, and other direct
references with the style sheet may be. The trick is that if you write a
document using an XML declaration and an XHTML doctype, then the CSS class names
will be case sensitive for some browsers. It is a good idea to avoid naming
classes where the only difference is the case, for example: div.myclass { ...}
div.myClass { ... } If the DOCTYPE or XML declaration is ever removed from your
pages, even by mistake, the last instance of the style will be used, regardless
of case. I hope it remove your doubts.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Cascading Style Sheets (CSS) is not case sensitive. However, font families, URLs to images, and other direct references with the style sheet may be. The trick is that if you write a document using an XML declaration and an XHTML doctype, then the CSS class names will be case sensitive for some browsers. It is a good idea to avoid naming classes where the only difference is the case, for example: div.myclass { ...} div.myClass { ... } If the DOCTYPE or XML declaration is ever removed from your pages, even by mistake, the last instance of the style will be used, regardless of case.
I hope it remove your doubts.