微信小程序中如何设置textarea中的placeholder换行显示
van-field 中直接修改textarea 标签的样式即可
<textarea class="txt_word" placeholder="我是第一行\n我是第二行\n我是第三行"></textarea>
.txt_word {
word-wrap: break-word;
white-space: pre-line
}
微信小程序中如何设置textarea中的placeholder换行显示
van-field 中直接修改textarea 标签的样式即可
<textarea class="txt_word" placeholder="我是第一行\n我是第二行\n我是第三行"></textarea>
.txt_word {
word-wrap: break-word;
white-space: pre-line
}