修改input元素placeholder样式的方法
修改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>
预览:
还没有留言,还不快点抢沙发?