Answers for "focus style css input"

CSS
2

input outline focus

input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
}
Posted by: Guest on October-16-2020
0

css focus

/* Cible n'importe quel élément <input> */
/* uniquement lorsqu'il a le focus */
input:focus {
  color: red;
}
Posted by: Guest on March-02-2022

Browse Popular Code Answers by Language