CSS
中,如果我们要绘制一个 椭圆,一般代码如下:#circleZeta {
width: 100px;
height: 50px;
background-color: #47d1eb;
border-radius: 100px / 50px; // 注意这里的写法
}
LESS
中,如果我们要将其编译为CSS
时,LESS
会自动根据 +
、-
、*
、/
等运算符进行尺寸大小的计算于是,如果在LESS
中绘制 椭圆,这一行样式:border-radius: 100px / 50px
就会被编译成 border-radius: 2px
,造成异常。
展示样式如下:
感谢
1
shiye515 2016-01-30 17:36:53 +08:00 via Android
用空格分割,不要用斜线
|
2
lujjjh 2016-01-30 17:41:12 +08:00 2
border-radius: ~"200px/100px";
或者 border-radius: 50%; |