I have a <select>
element within which I would like to Capitalize the text displayed in each <option>
tag.
For instance, I would like the 2 values here to be Bar and Baz (not bar and baz)
<style>
option { text-transform: Capitalize; }
</style>
<select name="foo">
<option value="bar">bar</option>
<option value="baz">baz</option>
</select>
This does not appear to work in my Chrome (14.0.835.202) but does work in my Firefox (8.0) and IE 8.
Edit: Added <style>
tag for clarity