I have a <select>
element where I want to capitalize the text in each <option>
tag.
Specifically, I want the options to display as Bar and Baz instead of bar and baz.
<style>
option { text-transform: Capitalize; }
</style>
<select name="foo">
<option value="bar">bar</option>
<option value="baz">baz</option>
</select>
This code doesn't seem to work in my Chrome (14.0.835.202) browser but works fine in Firefox (8.0) and IE 8.
Edit: Included <style>
tag for clarity