I assigned my form elements (input, select, textarea) a height of 30px and width of 200px, and set the line-height to 30px so the text vertically aligns. The vertical align seems to be working for every element except the select dropdown. The select text aligns to the top left. Anyway I can fix this?
I appreciate any help. This has been an ongoing problem for some time, and I've finally had time to ask for help lol
Code:
input, select, textarea { height:30px; line-height:30px; width:200px; } <select name="role"> <option value="admin">Admin</option> <option value="user">User</option> </select>
Comment