art-poet

1.style中需要作如下修改:

<style>
 
input::-webkit-input-placeholder {
    /* placeholder颜色 */
    color: #aab2bd;
    /* placeholder字体大小 */
    font-size: 12px;
}
</style>

2.HTML中的代码如下:

<input type="text" placeholder="输入你想要查找的内容" id="groupName">

3.同理textarea改变字体的大小和颜色方式:

style:

textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #9c9c9c;
}
textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #9c9c9c;
}
textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #9c9c9c;
}
textarea::-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #9c9c9c;
 
}

 

分类:

技术点:

相关文章:

  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
  • 2022-01-12
  • 2022-01-18
  • 2022-03-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2021-12-28
  • 2022-02-16
相关资源
相似解决方案