樣式具有“必需”屬性的元素
使用 CSS:必需選擇器來設定樣式,使具有“必需”屬性的 <input> 元素美化。
示例
您可以嘗試執行以下程式碼來實現:必需選擇器
<!DOCTYPE html> <html> <head> <style> input:required { background-color: orange; } </style> </head> <body> <form> Subject: <input type = "text" name = "subject" value = "C++"><br> Student: <input type = "text" name = "student" value = "Amit" required><br> </form> </body> </html>
廣告