微信小程序日常采坑
程序员文章站
2022-04-15 18:14:02
...
-
使用按钮做图片,button套img
因为开发中必须用button绑定事件,比如获取手机号之类的,但button标签中套一个图片,button有边框
button如何套图片,代码如下,无边框
<button type="button" plain="true">
<img src="图片url" style="width:100%;display:block;"
mode="widthFix" lazy-load="true" />
</button>
<style>
button {
text-decoration: none;
padding: 0;
border: none;
}
button[plain] {
border: none;
}
</style>