jonkemp / inline-css

Inline css into an html file.
MIT License
429 stars 84 forks source link

Disable alphabetically order #96

Open beam2web opened 4 years ago

beam2web commented 4 years ago

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.