You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example:
normalize.css: padding-bottom: 0; padding-left: 0; padding-right: 0;
Own CSS after normalize: padding: 4px 8px;
The inline (alphabetical) order is: padding: 4px 8px; padding-bottom: 0; padding-left: 0; padding-right: 0; → But this is wrong because Normalize should not overwrite anything and I don't want to have to adjust it.
I need an option to turn off alphabetical sorting and output the properties in the same order as defined.
The text was updated successfully, but these errors were encountered:
Example:
normalize.css: padding-bottom: 0; padding-left: 0; padding-right: 0;
Own CSS after normalize: padding: 4px 8px;
The inline (alphabetical) order is: padding: 4px 8px; padding-bottom: 0; padding-left: 0; padding-right: 0; → But this is wrong because Normalize should not overwrite anything and I don't want to have to adjust it.
I need an option to turn off alphabetical sorting and output the properties in the same order as defined.
The text was updated successfully, but these errors were encountered: