শুধুমাত্র পঠনযোগ্য উপাদান নির্বাচন করতে, CSS :পঠন-অনলি নির্বাচক।
ব্যবহার করুনউদাহরণ
আপনি :পঠনযোগ্য নির্বাচনকারী
বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন<!DOCTYPE html> <html> <head> <style> input:read-only { background-color: blue; color: white; } </style> </head> <body> <form> Subject: <input type = "text" name = "subject" value = "Maths"><br> Student: <input type = "text" name = "student" readonly value = "Amit"><br> </form> </body> </html>