Re: [css-variables] feedback

Is there a particular reason to prefer ‘--’ over ‘$’ for declaring variables? I mean,

$color-headings: #444;

h1{


color: var($color-headings);

}

still looks better than

--color-headings: #444;

h1 {


color: var(--color-headings);

}

Received on Thursday, 23 July 2015 09:15:14 UTC