Sử dụng CSS:valid selector để tạo kiểu cho tất cả các phần tử bằng một giá trị hợp lệ.
Ví dụ
Bạn có thể thử chạy mã sau để triển khai:Công cụ chọn hợp lệ:
<!DOCTYPE html>
<html>
<head>
<style>
input:valid {
background: red;
color: white;
}
</style>
</head>
<body>
<h2>Heading</h2>
<input type = "email" value = "amit@example.com">
<p>The style (red color background) appears if you type a relevant/ valid email address.</p>
</body>
</html> Đầu ra