时间:2019-05-03 来源:小程序工厂
我也遇到这个问题, 有解决方案吗
把border:0px写在style里
我把源码和效果图给你看看
wxml:
wxss:
.btn{
position:absolute;
float:right;
border:0px solid red;
right:25px;
width:20px;
height:20px;
}
.btn::after{
border: none;
}
wxml:
wxss:
.btn{
position:absolute;
float:right;
border:0px solid red;
right:25px;
width:20px;
height:20px;
}
.button::after{
border: none;
}
wxml:
.btn::after{
border:none;
}
和.button::after{
border:none;
}
我都试过,没有效果,倒是直接在style里设置边框0px有效果
::after这个要加上,没用的话加个!important试试看
!important 是啥?
button::after{
border:none;
}
试过,没用
xxx.wxml
xxx.wxss
.myBtn::after{
border: none;
} 你要的是这样子么?
.myBtn::after{border:none;}和.button::after{border:none;}
我都试过,都没有效果,倒是直接在wxml的style里设置style='position:absolute;float:right;border:0px solid red;right:25px;width:20px;height:20px;'有效果但是如果在wxss里设置.btn{
position:absolute;
float:right;
border:0px solid red;
right:25px;
width:20px;
height:20px;
}
都无效,不管有没有加::after{border:none;}
style='border:0px' 确实有效, 而且在wxss设置是无效的
.btn::after {
border: none !important;
}
这样有效的