修改input元素placeholder样式的方法
2021年11月19日
667
修改input元素placeholder样式的方法
<input type="text" name="" id="" placeholder="你好">
css:
<style>
::-webkit-input-placeholder{
color: #999;
font-size: 14px;
font-weight: bolder;
}
::-moz-input-placeholder{
color: #999;
font-size: 14px;
font-weight: bolder;
}
::-o-input-placeholder{
color: #999;
font-size: 14px;
font-weight: bolder;
}
::-ms-input-placeholder{
color: #999;
font-size: 14px;
font-weight: bolder;
}
</style>预览:

