首页 > 代码库 > TextArea里Placeholder换行问题

TextArea里Placeholder换行问题

页面上使用TextArea控件时,会时不时的想给个提示,比如按照一定方式操作之类的。正常情况下,会使用Placeholder,但这样的提示是不会换行的,无论是用\r\n,还是用<br/>,都不起作用。

前段时间碰到这个问题,一直没有解决,所有页面上的Placeholder都是一行到底,丑死了。

无意中,一个朋友提供了一个方法,完美的解决了问题,贴出来和大家分享一下:

<textarea id="text1" placeholder="Line 1" rows="5"></textarea><textarea id="text2" placeholder="."  rows="5"></textarea>#text1::-webkit-input-placeholder::after {    display:block;    content:"Line 2\A Line 3";}#text2::-webkit-input-placeholder::before {    color:#666;    content:"Line 1\A Line 2\A Line 3\A";}

 

TextArea里Placeholder换行问题