zachvaldez
asked on
displaying 3 dropdownlist horizontally
I have this code but it displays 3 dropdownlist vertically and not horizontally to fit 9column row.
What to do?
<div class="row">
<div class="large-9 columns">
<label>
John
<asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList>
</label>
<label>
Peter
<asp:DropDownList ID="DropDownList2" runat="server"></asp:DropDownList>
</label>
<label>
Jeff
<asp:DropDownList ID="DropDownList3" runat="server"></asp:DropDownList>
</label>
</div>
</div>
What to do?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Juana , you're in right direction
Also can you post the rendered HTML (view source - copy and paste the HTML for the row.