css如下,使用伪类来进行添加样式
input::-webkit-input-placeholder {
  color: green;
  text-align: right;
}
textarea::-webkit-input-placeholder {
  color: #f00;
  text-align: center;
  line-height: 10;
}
html如下
<div><input type="text" placeholder="修改我的样式"></div>
<div><textarea name="name" ></textarea></div>
 
效果:
input placeholder占位符可以修改样式

 

相关文章:

  • 2021-12-15
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
猜你喜欢
  • 2021-12-28
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-12-15
相关资源
相似解决方案