Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Multiline Text boxes?

I want to create a multi-line text input for my homebrew character sheet. Is this possible? (essentially, a small text box rather than just a text input.)
1464838592
Lithl
Pro
Sheet Author
API Scripter
Single line: <input type="text" name="attr_my-text"> Multi-line: <textarea name="attr_my-text"></textarea> Anything you put between the open and close tags of textarea (including a new, empty line) will be the contents of the text box when the sheet first loads.
Thank you. I don't have a whole lot of experience with forms. :P
1464840469
Pat S.
Forum Champion
Sheet Author
If you use the placeholder command you can put in a description of what that text field is supposed to be. This can be overwritten with any text inputted in the field. Single line: <input type="text" placeholder="description" name="attr_my-text"> Multi-line: <textarea name="attr_my-text" placeholder="description"></textarea>