1、PC端折行方法

placeholder="字体
字体"

 可以使其折行显示
 

2、移动端折行方法

webkit内核

textarea::-webkit-input-placeholder:after{ display:block; content:"line@ \A line#";/* \A 表示换行 */ color:red; };

火狐

textarea::-moz-placeholder:after{ content:"line@ \A line#";/* \A 表示换行 */ color:red; };

 

相关文章:

  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2021-05-10
  • 2021-11-26
  • 2022-01-03
  • 2021-07-03
猜你喜欢
  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案