LoginSignup
0
0

More than 5 years have passed since last update.

Safariでボタンの角丸が消えないときの対応

Last updated at Posted at 2016-12-27
  input[type="button"],input[type="submit"] {
    border-radius: 0;
  }

上記のみの指定だけでは、角丸は消えないので下記で対応。

  input[type="button"],input[type="submit"] {
    -webkit-appearance: none;
  }

CSS初心者の僕は知らなかった・・・

0
0
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
0
0