Does the order of properties in a CSS declaration have an effect on the rendering of the HTML?
|
migrated from webmasters.stackexchange.com Oct 26 '12 at 3:10
|
Apparently the order does not have any direct impact on the result. The subject has been mentioned here: http://css-tricks.com/new-poll-how-order-css-properties/ It does have an impact according to here: http://css-tricks.com/ordering-css3-properties/ And here is another trend: http://perishablepress.com/obsessive-css-code-formatting-patterns-and-trends/ Final verdict: Arrange the way you judge best, it will work. |
|||||
|
|
This is really a trickier question than I first thought. My first reaction was: Within a CSS rule (also called “rule set”), the order of declarations (of the form property: value) is immaterial. So On second thought, we could also have
What happens if you switch the order? In browsers, it does have an effect. I’m not sure how this should be interpreted in terms of CSS specification, but browsers apparently, and naturally, process the declarations sequentially. So the rule makes the text bold, but if you change the order,
then things change. The On third thought, there are many methods and tricks based on the order. So yes, the order of declarations is significant. The impact of the order of rules is a completely different issue. |
|||||||
|
|
In normally no need or rule to order of properties in a CSS declaration. I wrote order like my requirements of design and browser response, but in firebug tool it arrange sin alphabet order. The best method of order is
Then only browser allocate space for each element faster in my experience. Some persons order like below types: Random Alphabetical Grouped by Type By properties Length |
|||
|
|
|
There are some guidelines. But, at the end of the day it comes down to browser implementation. Try not to rely on a certain order always working, because it won't. Inside a declaration, a statement tends to override a previous statement. |
|||
|
|