Nhấn
CTRL + SPACE
để xem gợi ý code
Xem kết quả
Selector trong CSS3
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Học CSS3 toidicode.com</title> </head> <style type="text/css" media="screen"> input:disabled{ background-color: orange; } </style> <body> <form action=""> <input type="text" placeholder="Nhap ho ten" > <input type="number" placeholder="Nhap so dien thoai" disabled=""> <input type="submit" value="Gửi"> </form> </body> </html>