Answers for "css focus-within"

CSS
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

Browse Popular Code Answers by Language