Quick question which I suppose is trivial. Let's say I write the following CSS:
.card{ width: 200px, height: 500px }
Now I open the page up in Chrome and look at the "computed" tab whilst I have .card selected and it's arranged in alphabetical order. Does the browser conduct this every time you load a page or does this sorting only happen when you open the "computed" tab. Also if the sorting is happening every time you load the page (ie Chrome sorts CSS before executing it) is it possible to gain even a tiny performance boost by sorting your properties in the CSS file to save Chrome the extra work?
I realise I have singled out Chrome but other browsers work similarly
Thanks