All Questions
2 questions
8
votes
1
answer
425
views
Order by CSS Specificity
My main goal is to try to reorder a CSS style block based on specificity. I previously had helped from SO and I managed to produce this function. See gist.
Here is an example:
function specificity($...
6
votes
2
answers
345
views
Order CSS based on Selector Specificity
I have parsed a given CSS file/string into a JSON object like so:
{
"#header": {
"color": "#000000"
},
"#header h1": {
"color": "#000"
},
"h1": {
"color": "...