我有兩個字段集,我想,以顯示彼此相鄰:如何將兩個div對齊?
我設法得到它的正確距離我從彼此想要的,但一直沒能對陣容有高度。
下面是我用過的html。
<div style="width:900px; height:230px;">
<fieldset style="width:150px;">
<legend>Facilities Required</legend>
<asp:CheckBox ID="PhysicalMailbox" runat="server" Text="Physical Mailbox" /><br>
<asp:CheckBox ID="Uniform" runat="server" Text="Uniform"/><br>
<asp:CheckBox ID="Desk" runat="server" Text="Desk"/><br>
<asp:CheckBox ID="Stationary" runat="server" Text="Stationary"/>
</fieldset>
<div style="width:50%; top:0px">
<fieldset style="width:229px; left:151px; float:right; top:0px;" >
<legend>Access Required</legend>
<asp:CheckBox ID="AccessTag" runat="server" Text="Access Tag" /><br><br>
<asp:Label ID="lblProfile" enableviewstate="false" runat="server" AssociatedControlID="ddProfile" CssClass="FormLabel">Profile</asp:Label>
<ICCM:ICCMDropDownList ID="ddProfile" runat="server" TabIndex="10" style="width:233px;" AppendDataBoundItems="true" >
<Items>
<asp:ListItem Value="" Text="" Selected="True" />
</Items>
</ICCM:ICCMDropDownList>
</fieldset>
</div>
</div>
在此先感謝。
它很容易@Pomster,Stackoverflow有這麼多的問題和答案關於這個任務時間做網頁搜索? http://stackoverflow.com/questions/2716955/css-layout-aligning-two-divs-side-by-side和http://stackoverflow.com/questions/4460990/align-2-divs-side-by-邊 –