user3549665
user3549665

Reputation: 123

Aligning label for multiple select in center of select box

this is my html page enter image description here

In the above picture, I want label client to be in center of select box. How can I do this?

Upvotes: 3

Views: 2512

Answers (1)

JohanVdR
JohanVdR

Reputation: 2878

http://fiddle.jshell.net/n6dNR/2/

label,select {
 display: inline-block;
 vertical-align: middle;
}

Upvotes: 5

Related Questions