I recently wrote this line of CSS inside of a .less
file....
background: linear-gradient(#fff0, #fff);
...after first trying it out inside the browser inspector, where it worked as expected, rendering a gradient background from transparent fading into white.
However, it did not work correctly after compiling the LESS file. It looks like it was getting compiled to:
... Read more