欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序开发之设置Button边框border

程序员文章站 2022-07-09 15:56:58
微信开发工具 v1.02.1802080 微信小程序自定义 Button 边框 border主要代码: .myButton{ border: 1px solid #7...

微信开发工具 v1.02.1802080

微信小程序自定义 Button 边框 border主要代码:

.myButton{
  border: 1px solid #70bcf6; 
  border-radius: 2px;  
  background-color: white;
}

.myButton::after{
  border: none; 
}

效果如下:

微信小程序开发之设置Button边框border