使用 CSS :invalid 选择器为所有 元素设置无效值的样式。您可以尝试运行以下代码来实现:invalid选择器
Live Demo
<!DOCTYPE html> <html> <head> <style> input:invalid { background: red; } </style> </head> <body> <h2>Heading</h2> <input type = "email" value = "InvalidEmail"> <p>The style (red color background) appears if you type an irrelevant/ invalid email address.</p> </body> </html>
以上是CSS的作用:无效的选择器的详细内容。更多信息请关注PHP中文网其他相关文章!