প্রতিটি অক্ষম <ইনপুট> উপাদান স্টাইল করতে, 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>