Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

จะเปลี่ยนสีของแอตทริบิวต์ตัวยึดตำแหน่งด้วย CSS ได้อย่างไร


หากต้องการเปลี่ยนสีของแอตทริบิวต์ตัวยึดตำแหน่งด้วย 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>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

จะเปลี่ยนสีของแอตทริบิวต์ตัวยึดตำแหน่งด้วย CSS ได้อย่างไร