Answers for "setting focus on an element with css"

18

set focus javascript

document.getElementById("ThingToSetFocusOn").focus();
Posted by: Guest on February-11-2020
0

css focus-within

form {
  border: 1px solid;
  color: gray;
  padding: 4px;
}

form:focus-within label{
  background: #ff8;
  color: black;
}

input {
  margin: 4px;
}
Posted by: Guest on March-14-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language