Как сделать - Цвет заполнителя
Узнать, как изменить цвет атрибута - заполнителя с помощью CSS.
Цвет заполнителя
Редактор кода »Шаг 1) Добавить HTML:
Use an input element and add the placeholder attribute:
Пример
<input type="text" placeholder="A red placeholder text..">
Шаг 2) Добавить CSS:
In most browsers, the placeholder text is grey. To change this, style the placeholder with the non-standard ::placeholder
selector. Примечание that Firefox adds a lower opacity to the placeholder, so we use opacity:
1 to fix this.
Пример
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: red;
opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: red;
}
::-ms-input-placeholder { /* Microsoft Edge */
color: red;
}
Редактор кода »
Совет: Узнайте больше о селекторе ::placeholder в нашем справочнике CSS Свойство ::placeholder.