小程序
小游戏
企业微信
微信支付
扫描小程序码分享
button按钮设置line-height 在ios真机上样式失效,IOS13.4 最新微信,微信小程序API基础库2.10.4
样式:
手机下效果:
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
line-height: normal;
display: flex;
align-item: center;
justify-content: center;
代码片段:
https://developers.weixin.qq.com/s/ZwtlKqmF7zgq
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
button {
background-color: transparent;
padding: 0;
margin: 0;
position: static;
border: 0;
border-radius: 0;
color: transparent;
}
button::after {
content: '';
width: 0;
height: 0;
-webkit-transform:scale(1);
transform:scale(1);
display: none;
background: transparent;
按照你给的截图的代码,在工具上line-height也是无效的,改成line-height:100%
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
line-height: normal;
display: flex;
align-item: center;
justify-content: center;
代码片段:
https://developers.weixin.qq.com/s/ZwtlKqmF7zgq
button {
background-color: transparent;
padding: 0;
margin: 0;
position: static;
border: 0;
border-radius: 0;
color: transparent;
}
button::after {
content: '';
width: 0;
height: 0;
-webkit-transform:scale(1);
transform:scale(1);
display: none;
background: transparent;
}
button::after {
按照你给的截图的代码,在工具上line-height也是无效的,改成line-height:100%