Re: [css-variables] feedback

Consistency with custom properties.

—Michiel

> On 12 Jul 2015, at 17:59, raees@thewebsmith.co wrote:
> 
> 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:27:59 UTC