LoginSignup
8
6

More than 5 years have passed since last update.

input type="search"にスタイルを効かせる

Last updated at Posted at 2015-10-20
<input type="search">

検索ボックスをcssで角丸にしようとしたら、Safariでスタイルが適用されなかった。。
ブラウザデフォルトの設定が効いてしまう様子。

以下スタイルを追加してあげるとpaddingやら丸角やらが適用された。解決。

/* プロパティが効くようにする */
.input[type="search"] {
  -webkit-appearance: textfield;
}

/* フォーカス時に四角いアウトラインでるので消す */
.input[type="search"]:focus {
  outline-style: none;
}

/* paddingで消せない余白を消す */
.input[type="search"]::-webkit-search-decoration {
  display: none;
}

IE9以下はtype="search"自体使えないので、IE9も対象の場合はsearchを使わない別の方法を考えまそう。

8
6
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
8
6