초점(클릭 또는 활성)에 있는 요소<input>의 배경색을 "밝은 파란색"으로 설정한다.

코드

input:focus {
  background-color: lightblue;
}

실행결과