微信小程序去掉button按钮边框
            时间:2019-12-10 17:24:16  
            收藏:0  
            阅读:162
        
        
        button{
  position: static;
}
button:after {
  content: none;
  border: none;
} 
使用::after伪类选择器的方式去覆盖默认值
            评论(0)
        
        
        