要為每個啟用的元素設定樣式,請使用CSS的:enabled選擇器。
您可以嘗試執行以下程式碼來為啟用的元素設定樣式
線上示範
<!DOCTYPE html> <html> <head> <style> input:enabled { background: blue; } </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" disabled><br> </form> </body> </html>
以上是使用 CSS 設定每個啟用元素的樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!