Where can I find all the CSS parameters and their actual values?

There are too many attributes / parameters in CSS ... I want to know all of them and their meaning. Where can I find it?

thanks

0


a source to share


10 replies


If you think too many are trying to look at something like the .NET framework. CSS is nothing. Nevertheless:



+13


a source


All in alphabetical order at: CSS Property Index which also gives you access to sorting by category.



Clicking on each property redirects you to a page detailing the property: What is it; Valid values; Examples of using

+5


a source


The spec is a good starting point: http://w3.org/TR/CSS21/

+4


a source


that's not all, but I've got it printed and hanging on my camera. I need to style so rarely that I can never remember the syntax.

http://lesliefranke.com/files/reference/csscheatsheet.html

+2


a source


I've always found the cheat sheet to be very handy.

+2


a source


There is a (yet incomplete) list of CSS properties, selectors and other CSS components at https://developer.mozilla.org/en/CSS_Reference and a whole group of resources http://www.w3.org/Style/CSS/learning

0


a source


This is not a very good approach to learning CSS. There are many attributes, but you want to focus on those that work consistently across browsers. And many of the most important properties (display, position) have behavior that depends on the values ​​of other properties, so training them one by one will not allow you to fully understand them.

I recommend the book HTML and CSS Design Patterns as a way to learn the most important attributes and how they interact. It does a great job of targeting behaviors that you can rely on across browsers, as well as catching unexpected dependencies between attributes.

0


a source


I can't believe nobody mentioned devguru!

http://www.devguru.com/technologies/css2/index.asp

0


a source


The mastery of CSS by Andy Budd, Simon Collison, and Cameron Moll is extremely useful as an introduction to the chaotic world of CSS.

0


a source


Getting a good book is by far a better way than looking at the specs on the W3C.

I also recommend CSS Mastery and Bulletproof Web Design by Dan Sederholm - great starting points.

For online resources, you should take a look at Sitepoint CSS Link . It's also a great HTML and Javascript resource. You should also browse the articles on A List Apart and 24ways .

0


a source







All Articles