首页 > 技术文章 > 微信小程序的button去边框

zhanghaian 2018-08-27 16:55 原文

wxml

<button class='niu'>123123</button>

css

 

.nui{

  border: none;

  background-color: transparent;

  outline: none; //消除默认点击蓝色边框效果

}

.niu::after{

  border:none;

}

 

推荐阅读