oscarotero/stylecow

Vendor prefixes plugin chockes on slightly "mistaken" css

Closed this issue · 1 comments

Just to write it down somewhere (as you're rewriting the library):

if you have a rule like

.rule .with .multiple .semicolons {
    background: red;;
    color: blue;;;
}

(wich definitely shouldn't be there like that, but happens =D)

then you get

.rule .with .multiple .semicolons {
    background: red;
    : ;
    color: blue;
    : ;
    : ;
}

don't know yet where that is coming from =)

Thank you, @exside