13
10

More than 5 years have passed since last update.

iPhoneのSafariでdisabledのinputの文字色を指定する

Last updated at Posted at 2018-03-15

iPhoneのSafariにおいて、disabledのinputに入っている文字の色を変更するためには下記のように指定する必要がある。

style.css
input {
  -webkit-text-fill-color: black;
  opacity: 1;
}

-webkit-text-fill-colorで色を指定し、opacityで透過率を指定する。

13
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
10