textarea的placeholder属性内容折行显示(PC和移动端端)
Posted 菲比寻常的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textarea的placeholder属性内容折行显示(PC和移动端端)相关的知识,希望对你有一定的参考价值。
1、PC端折行方法
placeholder="字体 字体"
可以使其折行显示
2、移动端折行方法
webkit内核
textarea::-webkit-input-placeholder:after{ display:block; content:"[email protected] \A line#";/* \A 表示换行 */ color:red; };
火狐
textarea::-moz-placeholder:after{ content:"[email protected] \A line#";/* \A 表示换行 */ color:red; };
以上是关于textarea的placeholder属性内容折行显示(PC和移动端端)的主要内容,如果未能解决你的问题,请参考以下文章