একটি "প্রয়োজনীয়" বৈশিষ্ট্য সহ <ইনপুট> উপাদানগুলিকে স্টাইল করতে CSS :প্রয়োজনীয় নির্বাচক ব্যবহার করুন৷
উদাহরণ
আপনি :প্রয়োজনীয় নির্বাচক
বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন<!DOCTYPE html> <html> <head> <style> input:required { background-color: orange; } </style> </head> <body> <form> Subject: <input type = "text" name = "subject" value = "C++"><br> Student: <input type = "text" name = "student" value = "Amit" required><br> </form> </body> </html>