问题
I am currently using the following property in CSS:
background: radial-gradient(at top right, rgba(0,0,0,0.1), rgba(0,0,0,0));
If I try this property in my browser, it works fine, though when I put it in my sass file, it is somehow converted to css incorrectly.
background: radial-gradient(right top, rgba(0,0,0,0.1), rgba(0,0,0,0));
at top right is converted to right top.
Anything I could do to prevent this ?
Thanks
来源:https://stackoverflow.com/questions/28632751/sass-is-converting-at-top-right-to-right-top-in-my-radial-gradient