প্রতিটি নিষ্ক্রিয় <ইনপুট> উপাদান স্টাইল করতে CSS :অক্ষম নির্বাচক ব্যবহার করুন। আপনি :অক্ষম নির্বাচক
বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেনউদাহরণ
<!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>