SASS is converting “at top right” to “right top” in my radial-gradient

社会主义新天地 提交于 2019-12-11 05:48:12

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!