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,
Universal solution
color: transparent; position: absolute.contenteditable="true", with injected span elements.border-bottom and padding-bottomLive Demo
CodeSandbox editor (using Vue, but easy to port to anything else)
Note: Please be careful with contenteditable and make sure you secured it from XSS attacks.