Posted by julianmlp on 05/21/06 04:05
Is there any difference between this two alternatives?
I mean, does the browser stops parsing after finding "display: none;" ?
Have anyone seen Mozilla source code? It hard to say what happens
either in IE or Opera I guess...
div.whatever_class{
property1
property2
property3
property4
property5
property6
property7
display: none;
}
div.whatever_class{
display: none;
property1
property2
property3
property4
property5
property6
property7
}
regards - julian
[Back to original message]
|