Hello,
There seems to be too many attributes/parameters in CSS... I want to know all of them and their meaning. Where can I find it?
Thanks
Hello,
There seems to be too many attributes/parameters in CSS... I want to know all of them and their meaning. Where can I find it?
Thanks
its not everything, but i have this printed and hanging on my cubicle. I have to style so infrequently I can never remember the syntax.
The specification is a good starting point: http://w3.org/TR/CSS21/
If you think that's too many try looking at something like the .NET framework. CSS is nothing. Still:
There is a (yet incomplete) list of CSS properties, selectors and other components of CSS at https://developer.mozilla.org/en/CSS_Reference and a whole bunch of resources at http://www.w3.org/Style/CSS/learning
All in alphabetical order at: CSS Property Index that also gives you the access to sort by category.
By clicking on each property redirects you to a page that goes in detail of the property telling: What it is; Allowed Values; Examples of it used
This is not a good approach to learning CSS. There are many attributes, but you want to focus on the ones that work consistently across browsers. And many of the most important properties (display, position) have behaviors that depend on the values of other properties, such that learning them one-by-one will not let you understand them comprehensively.
I do recommend the book "PRO HTML and CSS Design Patterns" as a way to learn the most critical attributes and how they interact. It does a good job on focusing on behaviors you can rely on across browsers, as well as identifying unexpected dependencies between the attributes.
CSS Mastery by Andy Budd, Simon Collison, and Cameron Moll is extremely helpful as introduction to the chaotic world of CSS.
Getting a good book is definitely a better way than looking through the specifications on W3C.
I'd also recomend CSS Mastery, and Bulletproof Web Design by Dan Cederholm as great starting points.
For online resources you should have a look at the Sitepoint CSS Reference. It's also a great HTML and Javascript resource. You should also browse through the articles on A List Apart and 24ways.