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 here.
×
×
Cookie Preferences
We use Cookies to help personalize and improve Roll20. For more information on our use of non-essential Cookies, visit our Privacy Policy here.
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.)
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.
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>