收藏
回答

textarea设置 auto-heigh,placeholder的文字不能换行且被截断?

<Textarea className={styles.textarea} maxlength ="512" auto-height={true} placeholder={`感官 感觉 感受 感悟 情绪 想法 念头 意识 身体 思维 无意识 ......`} placeholderClass={styles.placeholder} value={description} onBlur={(e) => setDescription(e.detail.value)}></Textarea>

以上为代码

textarea {

word-wrap:"break-word";

white-space:"pre-line" ;

box-sizing: border-box;

border-radius: 32px;

height: 480px;

background: #f3f3f4;

//display: flex;

//flex-direction: column;

padding: 32px;

}

.placeholder {

color: rgba(0, 0, 0, 0.4);

font-size: 28px;

}

以上为CSS

这个是实际的截图


问题:

1、placeholder文字被截断

2、如何换行

回答关注问题邀请回答
收藏

1 个回答

  • H1HAO 🇨🇳
    H1HAO 🇨🇳
    2023-03-28

    没有提供这种解决方案。建议添加 style="min-height: 最小展示高度rpx",

    2023-03-28
    有用
    回复 1
    • Haibao
      Haibao
      2023-03-29
      感谢回复,我试试
      2023-03-29
      回复
登录 后发表内容