Computer >> Máy Tính >  >> Lập trình >> CSS

Cách thay đổi màu trình giữ chỗ cho hộp văn bản trong CSS

Sử dụng phần tử giả ::placeholder, chúng ta có thể thay đổi màu văn bản placeholder dành cho các hộp văn bản.

Cú pháp của CSS ::placeholder pseudo-element như sau -

::placeholder {
   attribute: /*value*/
}

Ví dụ

Các ví dụ sau minh họa CSS ::placeholder pseudo-element.

<!DOCTYPE html>
<html>
<head>
<style>
input:last-child::placeholder {
   color: cornflowerblue;
}
</style>
</head>
<body>
<input type="text" placeholder="Default color" />
<input type="text" placeholder="Check my new color :D" />
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Cách thay đổi màu trình giữ chỗ cho hộp văn bản trong CSS

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
input::placeholder {
   color: fuchsia;
}
input {
   margin: 2%;
   width: 100%;
}
div {
   display: flex;
   flex-direction: column;
   margin: 3%;
   padding: 3%;
   text-align: center;
   align-items: center;
   box-shadow: inset 0 0 30px brown;
}
button {
   width: 40%;
}
</style>
</head>
<body>
<div>
<input type="text" placeholder="Normal placeholder" />
<input type="email" placeholder="somenone@somewhere.com" />
<button>dummy btn</button>
</div>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Cách thay đổi màu trình giữ chỗ cho hộp văn bản trong CSS