Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vertical align dropdown in a div

How can I place dropdown with known width in div with known width and height?vertical align doesnt help me.

    <div id="wrapper">
       <select id="dropdown" ></select>
    </div>

    #wrapper{
       border-style:solid;
       height:100px;
       width:200px;
     }

    #dropdown {      
      vertical-align:middle;
      width:80px;
    }

Here is jsFiddle.

like image 504
Dot Net Avatar asked Dec 26 '12 14:12

Dot Net


1 Answers

#wrapper {
    border-style:solid;
    height:100px;
    width:200px;
    display:table-cell;
    vertical-align:middle;
}
#dropdown { 
   width:80px;
}
like image 165
Klevis Miho Avatar answered Oct 05 '22 22:10

Klevis Miho