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

Multiple column drop down

1500304207
SᵃᵛᵃǤᵉ
Sheet Author
API Scripter
Hey community, I need help with building a drop-down that has 3 columns in it spaced apart. Here is my basic idea <div> <select name="attr_manuever"> <div><option value="DN">Do Nothing</div><div>Any</div><div>None</div></option> </select> </div> Also any CSS help on this would be appreciated
1500309097
Lithl
Pro
Sheet Author
API Scripter
The only permitted children of <select> are <optgroup> and <option>. You cannot achieve what you're looking for with a <select>. You could mimic the behavior of a select dropdown with other elements ( see example ), but it's nontrivial to do so.