Center Align Text with Select Option
How to vertically Align a text with a Select Option. Link: http://mink7.com/projects/test/dashboard.html Use labels as in this example fiddle . Markup: <form action=""> <label for="startDate">Start Date:</label> <select id="startDate"> <option value="Mar 04">Mar 04</option> </select> <label for="endDate">End Date:</label> <select id="endDate"> <option value="Aug 04">Aug 04</option> </select> </form> When this does not work, then there are some inherited styles interfering and try to set vertical-align: middle as shown in this demo . In IE and Chrome the select tag text is aligned center