CSS এর সাথে স্থানধারক বৈশিষ্ট্যের রঙ পরিবর্তন করতে, কোডটি নিম্নরূপ -
উদাহরণ
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 20px; } input { font-size: 40px; font-weight: bold; } ::placeholder { color: rgb(70, 53, 167); } :-ms-input-placeholder { color: rgb(66, 51, 155); } ::-ms-input-placeholder { color: rgb(122, 69, 182); } </style> </head> <body> <h1>Placeholder color change example</h1> <input type="text" placeholder="Some placeholder text" /> </body> </html>
আউটপুট
উপরের কোডটি নিম্নলিখিত আউটপুট −
তৈরি করবে