Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS의 역할:포커스 선택기

<시간/>

:focus 선택기를 사용하여 포커스가 있는 요소를 선택합니다. 다음 코드를 실행하여 :focus 선택기를 구현할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:focus {
            background-color: green;
         }
      </style>
   </head>
   <body>
      <form action = "">
         Subject <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student"><br>
         Age: <input type = "number" name = "age"><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>