How can I underline all rows in textarea?

前端 未结 4 1846
北海茫月
北海茫月 2021-01-03 16:52

How can I underline all rows in textarea?

I need in something like this.

P.S. Textarea has style padding: 10px

I can\'t you background,

4条回答
  •  南方客
    南方客 (楼主)
    2021-01-03 17:18

    Short answer, it's not possible to format text inside a textarea.

    If this is really important I'd suggest using

    which allows you to style the text (but it's open to potential abuse from pasted HTML), and then parse our innerHTML to a hidden input field upon submitting your form.

提交回复
热议问题