Search code examples
htmldrop-down-menuhtml-selectsubscript

Is it possible to have <sub>scripts in <option>s in html?


I have a drop down menu full of chemical elements. Is there any way I could format them properly? Ex: H2O


Solution

  • You could try using the Unicode subscript characters:

    <select>
        <option>H₂O</option>
    </select>
    

    Working sample here: http://jsfiddle.net/pZ3mg/