Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

บทบาทของ CSS:ปิดใช้งาน Selector


ใช้ตัวเลือก CSS :disabled เพื่อจัดรูปแบบทุกองค์ประกอบ ที่ถูกปิดใช้งาน คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน :disabled selector

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:enabled {
            background: blue;
         }
         input:disabled {
            background: red;
         }
      </style>
   </head>
   <body>
      <form action = "">
         Subject <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student"><br>
         Age: <input type = "number" name = "age" disabled><br>
      </form>
   </body>
</html>