下拉列表根據選擇填充表格的行。無論有多少行,表格大小應該固定爲全高,100%;然而,它的大小隻有表格中的行數。我的一個html表格不能保持100%的高度
這裏是我使用的標記:
<table style="width:100%;height:100%">
<tr>
<td class="auto-style9">
<asp:DropDownList ID="ddlTechnicians" runat="server" AutoPostBack="True"
OnSelectedIndexChanged="ddlTechnicians_SelectedIndexChanged">
<asp:ListItem Selected="True">Online</asp:ListItem>
<asp:ListItem>Offline</asp:ListItem>
<asp:ListItem>All Users</asp:ListItem>
</asp:DropDownList>
</td>
</tr>
<tr>
<td>
<asp:Table ID="tblTechnicians" CssClass="tblTechnicians"
runat="server">
</asp:Table>
</td>
</tr>
</table>
而對於類tblTechnicians的CSS:
.tblTechnicians
{
width: 100%;
height: 100%;
}
感謝您的幫助。
沒有必要定義高度爲100%。它會自動增加行插入。 –
我不希望它自動調整。我想在100%的固定高度,雖然 –
我想這個答案可以幫助你:http://stackoverflow.com/questions/8977470/how-to-adjust-100-on-my-table-height在所有屏幕分辨率 – Aristos