天天看点

IOS中 button按钮去除边框

IOS中 button按钮去除边框

<view class="view_2">
 <button class="btn edit" type="button" @click="edit">编辑</button>
 <button class="btn submit " type="button" @click="$dianji(submit)">提交</button>
  </view>
           

ios系统运行 会出现边框。

IOS中 button按钮去除边框

添加代码可去除:

button::after{
		border: none;
	}
           
IOS中 button按钮去除边框