|
Posted by Neredbojias on May 20, 2006, 9:16 pm
Please log in for more thread options
To further the education of mankind, julianmlp@gmail.com vouchsafed:
> 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
It theoretically could depend on what the other properties are, but
basically no difference. -At least that's the theory.
--
Neredbojias
Infinity has its limits.
|