Web Development

/ 0评 / 3/ 最后更新:2021-12-06
清除ios系统h5页面input,textarea disabled默认样式

需求场景

textarea在设置了disable之后在安卓手机上显示正常,但ios系统手机上就会显示边框,背景为半透明,字体颜色为灰色。

解决方案

input:disabled, textarea:diabled {
    -webkit-opacity: 1;
    -webkit-text-fill-color: #333;
    color: #333;
}
3

Leave a Reply

Your email address will not be published. Required fields are marked *