Introduction
When clicking on the css tab on Firebug, there is an option available called "Expand Shorthand Properties"!
A typical css rule like the following:
border-left:2px solid #7FA100;
..is converted into the "Expanded" version like so:
border-left-color-ltr-source:physical;
border-left-color-rtl-source:physical;
border-left-color-value:#7FA100;
border-left-style-ltr-source:physical;
border-left-style-rtl-source:physical;
border-left-style-value:solid;
border-left-width-ltr-source:physical;
border-left-width-rtl-source:physical;
border-left-width-value:2px;
My problem / question
I work on a project where the designer introduces style sheets that contain rules in their "expanded" nature directly.
1) Are they proper css rules?
2) Do all (or any, or which) browsers recognize these expanded rules directly?
Thanks, dS