-1

私は奇妙な状況にあり、人々がこの特定の問題について私を助けるのは簡単でなければならないと信じています。子ページに2つのdivがあり、それらを並べて表示したいと思います。つまり、左側に1つ、右側に1つです。その後、画面下部に100%幅のテーブルを表示したいと思います。

あるdivで左にフロートを使用し、別のdivで右にフロートを使用しました。次に、テーブルの見出しを下部に表示すると、テーブルが表示されます。
私の問題は、私のすべての努力にもかかわらず、見出しがこれら2つのdivの間に表示されていることです。これが私のコードです。

   <div id="ContainerDiv" runat="server" style="width: 930px">
        <div id="DivticketDetails" runat="server" visible="false" 
            style="float: left; width: 400px;">
            <asp:Panel ID="PanelTicketDetails" runat="server" BackColor="#8B9FBE">
                <h3 style="color: #FFFFFF; font-weight: bold; text-decoration: underline;">
                    Bowzer Details</h3>
                <table border="1" cellpadding="0" cellspacing="0" class="myTable">
                    <tr>
                        <td bgcolor="#507CD1">
                            <asp:Label ID="Label6" runat="server" Text="Field / Customer Name" Font-Bold="True"
                                Font-Size="XX-Small" BorderColor="#507CD1" ForeColor="White"></asp:Label>
                        </td>
                        <td>
                            <asp:Label ID="lbl_FieldName" runat="server" Text="lbl_FieldName" CssClass="myLabel"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td bgcolor="#507CD1">
                            <asp:Label ID="Label3" runat="server" Text="Challan Generated On" Font-Bold="True"
                                Font-Size="XX-Small" BorderColor="#507CD1" ForeColor="White"></asp:Label>
                        </td>
                        <td>
                            <asp:Label ID="lbl_firstEntryDate" runat="server" Text="lbl_firstEntryDate" Font-Size="Small"
                                CssClass="myLabel"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td bgcolor="#507CD1">
                            <asp:Label ID="Label4" runat="server" Text="Product Name" Font-Bold="True" Font-Size="XX-Small"
                                BorderColor="#507CD1" ForeColor="White"></asp:Label>
                        </td>
                        <td>
                            <asp:Label ID="lbl_ProductName" runat="server" Text="lbl_ProductName" Font-Size="Small"
                                CssClass="myLabel"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td bgcolor="#507CD1">
                            <asp:Label ID="Label2" runat="server" Text="Bowzer No" Font-Bold="True" Font-Size="XX-Small"
                                BorderColor="#507CD1" ForeColor="White"></asp:Label>
                        </td>
                        <td>
                            <asp:Label ID="lbl_bowzerNo" runat="server" Text="lbl_bowzerNo" Font-Size="Small"
                                CssClass="myLabel"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td bgcolor="#507CD1">
                            <asp:Label ID="Label28" runat="server" Text="Quantity" Font-Bold="True" Font-Size="XX-Small"
                                BorderColor="#507CD1" ForeColor="White"></asp:Label>
                        </td>
                        <td>
                            <asp:Label ID="lbl_BowQuantity" runat="server" Text="lbl_BowQuantity" Font-Size="Small"
                                CssClass="myLabel"></asp:Label>
                        </td>
                    </tr>
                </table>
            </asp:Panel>
        </div>
        <div id="Div2" runat="server" style="float: right; width: 429px;">
            <asp:Panel ID="PanelBowzerHistory" runat="server" BackColor="#8B9FBE" Visible="False">
                <h3 style="font-weight: bold; text-decoration: underline; color: #FFFFFF">
                    Bowzer History
                </h3>
                <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4"
                    DataKeyNames="challan_id" DataSourceID="DSBowzerHistory" Font-Size="Smaller"
                    ForeColor="#333333" GridLines="None" AllowPaging="True" PageSize="4">
                    <AlternatingRowStyle BackColor="White" />
                    <Columns>
                        <asp:BoundField DataField="FirstWeight" HeaderText="FirstWeight" SortExpression="FirstWeight" />
                        <asp:BoundField DataField="Firstentry_date" HeaderText="Firstentry_date" SortExpression="Firstentry_date" />
                        <asp:BoundField DataField="SecondWeight" HeaderText="SecondWeight" SortExpression="SecondWeight" />
                        <asp:BoundField DataField="netWeight" HeaderText="netWeight" SortExpression="netWeight" />
                        <asp:BoundField DataField="SecondEntry_Date" HeaderText="SecondEntry_Date" SortExpression="SecondEntry_Date" />
                        <asp:BoundField DataField="challan_id" HeaderText="challan_id" InsertVisible="False"
                            ReadOnly="True" SortExpression="challan_id" />
                    </Columns>
                    <EditRowStyle BackColor="#2461BF" />
                    <FooterStyle BackColor="#507CD1" ForeColor="White" Font-Bold="True" />
                    <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
                    <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
                    <RowStyle BackColor="#EFF3FB" />
                    <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
                    <SortedAscendingCellStyle BackColor="#F5F7FB" />
                    <SortedAscendingHeaderStyle BackColor="#6D95E1" />
                    <SortedDescendingCellStyle BackColor="#E9EBEF" />
                    <SortedDescendingHeaderStyle BackColor="#4870BE" />
                </asp:GridView>
            </asp:Panel>
        </div>
    </div>

    <div id="tblDetailsDiv" runat="server" visible="False" title="Ticket Details" style="width: 930px;
        background-color: #8B9FBE;">
                <h3 style="font-size: medium; color: #FFFFFF; font-weight: bold; width: 930px; background-color: #00FF00;">
                Enter Details Here</h3>
            <table id="tblDetails" title="Enter Details" border="0" cellpadding="0" cellspacing="0"
                class="myTable" frame="border">
                <tr>
                    <td>

                    </td>
                    <td>
</table>
</div>

これがその表示方法です。

画像

4

1 に答える 1

0

2番目のdivのフロートを左に変更し、それらの2つのdivの後に変更してみてください。このような:

ここに画像の説明を入力してください

そして、これら2つのdivの後に、明確なスタイルの新しいdivを追加します。

<div style =” clear:both”&gt; </ div> それがうまくいくことを願っています。

ここに行きます。上記のコードを追加しました

于 2013-01-24T06:13:42.600 に答える