# placeholder 样式修改
placeholder 作为 input 占位符,经常在表单中使用,但你知道吗?其实 placeholder 样式也是能够通过 css 来修改的
支持的属性
backgroundpropertiescolorfontpropertiesletter-spacingline-heightopacitytext-decorationtext-indenttext-transformvertical-alignword-spacing
夜猫子的知识栈 placeholder 作为 input 占位符,经常在表单中使用,但你知道吗?其实 placeholder 样式也是能够通过 css 来修改的
支持的属性
background propertiescolorfont propertiesletter-spacingline-heightopacitytext-decorationtext-indenttext-transformvertical-alignword-spacing<html>
<input class='input1' placeholder="CSS Placeholder1">
<input placeholder="CSS Placeholder2">
</html>
<style>
.input1::placeholder {
color: deeppink;
}
</style>