포커스가 있는 요소를 선택하려면 다음을 사용하세요: 포커스 선택기. 이를 달성하려면 다음 코드를 실행해 보세요. Focus Picker -
<!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>
위 내용은 CSS에 초점을 맞춘 디자인 요소의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!