ios 安卓 disable去除默认样式 并保持和正常input一样的效果

input, textarea {

    outline: none;

    border: none;

    -webkit-appearance: none;

}

.input_disabled {

  background: #fff;

  /* color: #333 !important; */

  -webkit-opacity: 1;

  opacity: 1;

  /* -webkit-text-fill-color: #333; */

}

.input_disabled_has {

  color: black;

  -webkit-text-fill-color: black;

}

.input_disabled::placeholder {

  color: rgb(117, 117, 117);

}

猜你喜欢

转载自blog.csdn.net/qq_31494485/article/details/106802000