1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

inputタグを選択時に出てくる青線を消す方法

Last updated at Posted at 2020-10-28

■ はじめに

inputタグをクリックすると出てくる青線を消す方法について記事にしました。

■ この記事で出てくるCSSプロパティやクラス
・outlineプロパティ
アウトラインのスタイル・太さ・色をまとめて指定する。borderと異なり、上下左右の概念がない

・focus
擬似クラスで、ユーザーの操作によりフォーカスされた際にスタイルを適用する
例えば、フォームの入力欄にカーソルを合わせてテキストを入力できる様になった状態など

■ 例

検索窓をクリックしたら出てくる青い枠なんですが、inputタグにborder-radiusを指定していて
青い枠がinputタグからはみ出てしまいカッコ悪くなっています

スクリーンショット 2020-10-28 10.02.40.png

■ 手順

outline: none;を指定して、選択した時の青い線を消して
20/11/21(土)追記:元々表示されている枠線を消す時はborder: none;

スクリーンショット 2020-10-28 10.07.55.png

② 上の画像の様に、テキストカーソルが左に寄りすぎていたら、paddingで調整します

スクリーンショット 2020-10-28 10.10.09.png

③ 上の状態からクリックして色をつけたい時は、擬似要素:focusを使って色を指定します

スクリーンショット 2020-10-28 11.01.34.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?