Can you have multiple lines in an <option> element?

42,098

Solution 1

It's a particular case of displaying HTML tags inside an <option></option> element. As far as I know, browsers behave very differently in this area (Firefox displays even images, other browsers ignore most or all tags) and there isn't a cross-browser solution. You'll probably need to emulate it with JavaScript and a different markup.

At http://www.w3.org/TR/2011/WD-html-markup-20110113/option.html they say:

Permitted contents: normal character data

... which is defined at http://www.w3.org/TR/2011/WD-html-markup-20110113/syntax.html#normal-character-data

The spec is hard to understand, as usual, but I understand that you cannot insert a literal < (i.e., an HTML tag such as <br>). I cannot find where it defines the behaviour with blank space but most browsers appear to collapse it.

Solution 2

This may not be what you want, but you can get two lines per option, by using the "optgroup" tag e.g:

<select>
  <optgroup label="Click below for 'yes'">
    <option value="yes">Yes</option>
  </optgroup>
  <optgroup label="Click below for 'No'">
    <option value="no">No</option>
  </optgroup>
</select>

Solution 3

I’m afraid not. Browsers seem to ignore newline characters and HTML <br> tags inside <option> elements, and I don’t think JavaScript provides any way to manipulate how this text appears.

Solution 4

The problem with select's is that they are OS form elements as opposed to web form elements. That's why it's not possible to style them in some browsers (cough... IE6) unlike other inputs. Have you seen an example of this anywhere? As the operating system doesn't accommodate this, the browser won't either.

I'd also point out that it's not very user friendly. Users are used to the idea of a select box containing options on single lines. If you start to put them on multiple lines, you are going against the grain of the select box's usability and inherent accessibility. It might not be such a good idea to take this route.

Just my opinion, but hope it makes sense.

Solution 5

No, you'll have to build custom drop down list for such a thing.

jQuery offers lots of these; you can probably use CSS to define height for specific options to achieve what you need.

Share:
42,098
DarkLeafyGreen
Author by

DarkLeafyGreen

Tackling Complexity in the Heart of Software

Updated on March 13, 2020

Comments

  • DarkLeafyGreen
    DarkLeafyGreen about 4 years

    Is there a way to have multiple lines in an <option> element?

    Like this:

     -------------------------
    | Normal <option> element |
     -------------------------
    | <option> element broken |
    | onto two lines          |
     -------------------------
    | Normal <option> element |
     -------------------------
    

    Is there any HTML/CSS approach, or should I use JavaScript?

  • Ben Sewards
    Ben Sewards over 11 years
    This will not allow ONE option to be separated on TWO lines
  • Neil
    Neil over 11 years
    HotKey, strictly speaking you are right. What I suggested gives the effect of splitting an option over two lines (see jsfiddle.net/elusien/Sqc6Z). Whichever option the user chooses, only the second line is returned. In my defense I did say that this may not be what is wanted.
  • Ben Sewards
    Ben Sewards over 11 years
    Actually, you're idea of splitting the option and deferring a group doesn't seem like a bad idea at all. But saying so, how would it work with a data source?
  • iconoclast
    iconoclast about 10 years
    Absolutely brilliant!
  • tadywankenobi
    tadywankenobi about 10 years
    As this answer is nearly 3.5 yrs old, I'd add now, that there are numerous JS libraries to restyle the select box. Some of these, due to their very nature, will force select options onto two lines. If this is still a concern for people out there, then this might be an option. Just be aware that a lot of the styling libs aren't supported on iOS or Android.