次のコードを実行して達成することができます: focus pseudo-class
ライブ デモンストレーション
<!DOCTYPE html> <html> <head> <style> input:focus { background-color: orange; } </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 :focus 疑似クラスの使用法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。