Re: [css-d] order of rules in a single declaration

2016-10-14 Thread Tom Livingston
On Fri, Oct 14, 2016 at 3:06 PM, Karl DeSaulniers wrote: > Agreed. The parser doesn't care, but the browser will interpret and reorder > based on its settings/preferences. > > > Best, > > Karl DeSaulniers Bottom line, the page layout/display is not effected by the order

Re: [css-d] order of rules in a single declaration

2016-10-14 Thread Karl DeSaulniers
Agreed. The parser doesn't care, but the browser will interpret and reorder based on its settings/preferences. Best, Karl DeSaulniers Design Drumm http://designdrumm.com > On Oct 14, 2016, at 7:00 AM, Mi B wrote: > > The ordering is only an indication of

Re: [css-d] order of rules in a single declaration

2016-10-14 Thread Mi B
> 14 okt. 2016 kl. 06:54 skrev Karl DeSaulniers : > > The parser does care somewhat. Depends on the browser > In my research I have found that they load aspects before dynamics. > > Loading the elements basic parameters first like color, background color then > fonts,

Re: [css-d] order of rules in a single declaration

2016-10-14 Thread Tom Livingston
For clarity, I'll include my reply to Philippe, which I accidentally sent only to him... On Thu, Oct 13, 2016 at 11:34 PM Tom Livingston wrote: > >> Make any difference? > > > > No. The CSS parser doesn’t care. > > > > For the human eye aka readability of a stylesheet, that is

Re: [css-d] order of rules in a single declaration

2016-10-14 Thread Tom Livingston
Hmm. Ill try that. Never noticed that in my day to day. Thanks. On Fri, Oct 14, 2016 at 12:54 AM Karl DeSaulniers wrote: > The parser does care somewhat. Depends on the browser > In my research I have found that they load aspects before dynamics. > > Loading the elements

Re: [css-d] order of rules in a single declaration

2016-10-13 Thread Karl DeSaulniers
The parser does care somewhat. Depends on the browser In my research I have found that they load aspects before dynamics. Loading the elements basic parameters first like color, background color then fonts, font size, line height then width, height and then margins, padding and then borders,

Re: [css-d] order of rules in a single declaration

2016-10-13 Thread Philippe Wittenbergh
> On Oct 14, 2016, at 12:13 PM, Tom Livingston wrote: > > Curious. Does the order of declarations within a single rule matter? > Not specificity between rules. > > For example: > > div{ > position: relative; > display: block; > width: 100%; > margin: 10px

[css-d] order of rules in a single declaration

2016-10-13 Thread Tom Livingston
List, Curious. Does the order of declarations within a single rule matter? Not specificity between rules. For example: div{ position: relative; display: block; width: 100%; margin: 10px 20px; padding: 0; } as opposed to: div{ display: block; margin: 10px