Responsive Textarea

Hi Everyone,

I need to have a textarea that is pre-filled with text, in my case an email template.

When I create an embed with:

<textarea name="example" rows="11" cols="100">
Hi
</textarea>

The embed looks great on desktop, but overstretched on mobile. What should I do to make sure the text area is correctly sized on all devices?

Thanks


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

Hi @ozone31912 you can set your element width to 100%

textarea {
  max-width: 100%;
}