Reputation: 123
this is my html page
In the above picture, I want label client to be in center of select box. How can I do this?
Upvotes: 3
Views: 2512
Reputation: 2878
http://fiddle.jshell.net/n6dNR/2/
label,select {
display: inline-block;
vertical-align: middle;
}
Upvotes: 5