Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi friends,

i was designing page using html5, while am using textbox controls only means, i got the correct alignment.

but while am using the textbox controls with dropdownlist , i didnt get correct alignment and also size of the dropdown less than the textbox size .

is there any class to correct this alignment problem while using with dropdown?
Posted

1 solution

hi

can you share you drop down related code so that we can suggest if there is anything to be changed.
 
Share this answer
 
v2
Comments
leosang 28-Mar-13 14:12pm    
below mentioned the code what i was used in my page.....

<div class="row">
<div class="twelve columns">
<div class="row">
<div class="four columns"></div>
<div class="one columns">
<asp:Label class="right inline " ID="Label1" runat="server" >Address
</div>
<div class="three columns">
<asp:TextBox CssClass="left inline" ID="TextBox4" runat="server">
</div>
<div class="four columns">
</div>
</div>

<div class="row">
<div class="four columns"></div>
<div class="one columns">
<asp:Label class="right inline " ID="Label2" runat="server" >Name
</div>
<div class="three columns">
<asp:TextBox CssClass="left inline" ID="TextBox5" runat="server">
</div>
<div class="four columns">
</div>
</div>

<div class="row">

<div class="four columns"></div>
<div class="one columns">
<asp:Label class="right inline " ID="Label3" runat="server" >Location
</div>
<div class="three columns">
<asp:DropDownList CssClass="left inline" ID="ddlnmae" runat="server">

</div>
<div class="four columns">
</div>

</div>

</div>
</div>

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



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