“Fokus Pemilih CSS” Kode Jawaban

Fokus Pemilih CSS

The :focus selector is used to select the element that has focus.

The :focus selector is allowed on elements that accept keyboard events or other user inputs.

/* example */

:focus{
    outline: 3px solid black;
    outline-offset:3px;
}
Frightened Fowl

Fokus CSS

/* Cible n'importe quel élément <input> */
/* uniquement lorsqu'il a le focus */
input:focus {
  color: red;
}
Mind Wreck

Jawaban yang mirip dengan “Fokus Pemilih CSS”

Pertanyaan yang mirip dengan “Fokus Pemilih CSS”

Lebih banyak jawaban terkait untuk “Fokus Pemilih CSS” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya