Click here to Skip to main content
16,012,166 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
DropDownList items in mozilla firefox is not vertically middle align. how to make it vertcally middle align ? I have used styling for the dropdownlist as style="width:297px; height:32px;vertical-align:middle;" .Please try to give answer as soon as possible it is very urgent
Posted
Updated 19-Jan-12 18:29pm
v2

Hi,

try adding this css.

CSS
.dropdowndiv
{
    font-size:10pt;
    padding-bottom:4px;
    height:26px;
    width:220px;
    border:1px solid #d5d5d5;
    text-transform:uppercase;
    vertical-align:middle;
}
 
Share this answer
 
Comments
Sumit Datta 20-Jan-12 0:44am    
I have tried this solution but my result is same. Items in dropDown are still vertically top align, it is just in firefox 9.0.1, in older firefox it is coming vertically bottom align. I want vertically middle align. In all other browsers it is vertically middle align
manognya kota 20-Jan-12 1:05am    
ok..did you try text-align?
The following worked for me.

HTML:
XML
<asp:DropDownList ID="DropDownList1" CssClass="DropDownList" runat="server">
      <asp:ListItem>first</asp:ListItem>
      <asp:ListItem>second</asp:ListItem>
      <asp:ListItem>third</asp:ListItem>
      <asp:ListItem>fourth</asp:ListItem>
  </asp:DropDownList>

CSS:
CSS
.DropDownList
{
    width:61%;
    border:1px solid #7f9db9;
    vertical-align:middle;
    height:32px;
    padding:5px;
}
.DropDownList  option
{
    border-bottom:1px solid #7f9db9;
    padding:5px;
    vertical-align:middle;
}
.DropDownList  option:last-child
{
    border-bottom:none;
}
 
Share this answer
 
give this to drop down. style="width:297px; height:32px;padding-top:5px;padding-bottom:5px;line-height:30px;vertical-align:middle;"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900