运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <head> <style> input:valid { background-color: yellow; } </style> </head> <body> <h1>Demo of the :valid selector</h1> <input type="email" value="support@example.com"> <p>Try typing an illegal e-mail address, to see the styling disappear.</p> </body> </html>