what are CSS components? What are their functions and why are they required?
This question is about Cascading Style Sheets used in web design
Public Comments
- Those are the tags used: <-----------START [SOMETHING]----------------> <style> <div> <------------END [something]----------------->
- You're just wasting your time with a question like that, here. Use Google instead.
- If only people would read a question before answering. :( CSS comments are like HTML/XHTML comments. They give you an idea of what a specific piece of code is for or what browsers will work with it. I use then so I can easily go back to that spot and make updates without wondering what that code was for. Here is what a css comment looks like. Sometimes if done right css comments can be used as browser filters. <style="text/css"> /* comment */ body { color:red; } </style> Read this book http://www.idest.com/csshacks/
Powered by Yahoo! Answers