I am using the following CSS code to generate a baseline background on my website during development:
html {
background-image: url(http://basehold.it/i/24/777777);
}
I would like to pass a SASS variable of $base-line-height
into the URL, so it works like this:
html {
background-image: url(http://basehold.it/i/$base-line-height/777777);
}
But I keep getting an error when compiling. Is there a way I can do this?
Thanks
Mike