Disabled input text color

前端 未结 10 857
野性不改
野性不改 2020-12-22 22:06

The simple HTML below displays differently in Firefox and WebKit-based browsers (I checked in Safari, Chrome and iPhone).

In Firefox both border and text have the s

10条回答
  •  没有蜡笔的小新
    2020-12-22 22:56

    for @ryan

    I wanted my disabled input box to look like a normal one. This is the only thing that would work in Safari Mobile.

    -webkit-text-fill-color: rgba(0, 0, 0, 1);
    -webkit-opacity: 1;
    background: white;
    

提交回复
热议问题