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

Bootstrap5のformのフォーカスを消す(無効)にする

Last updated at Posted at 2022-02-02

無効にする方法

Bootstrap5のformのフォーカス(選択したときに青くまわりが光るやつ)を無効にする方法にだいぶてこずったので書いときます。

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); 
}

これを

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: none;
  /* box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); */
}

この変更をするとほとんどのフォームのフォーカスが無効になるのでご注意ください。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?