5

我正在使用 VS 2005,在 asp.net 中请告诉我如何在项目计数超出指定数量后在复选框列表中显示滚动条。就像我的情况一样,如果它们在我的复选框列表中存在超过 5 个项目,那么它应该显示一个滚动条.. 我不想固定它的高度,比如它们只有 1 个项目,而不是应该只占用 1 个项目的空间。 .. 请帮我...

我用过这个,但它占用空间(高度),即使它们是列表中的 1 或 2 个项目.. div style="overflow-y :auto; height :100px "

4

2 回答 2

7

您可以设置容器 div 的最大高度,而不是使用静态值固定高度。在这种情况下,只要它小于您指定的高度,它将使用自动高度:)

PS为了使 max-height 跨浏览器兼容,你必须在你的 css 中进行如下设置:

.checkBoxList {
  max-height:100px;
  height:auto !important;
  height:100px;
}
于 2010-05-12T07:52:01.373 回答
0

我以这种方式使用了面板:

HTML:

<asp:Panel ID="checkBoxPanel" runat="server" CssClass="scrollingControlContainer">
        <asp:CheckBoxList ID="chblCustomers" runat="server"></asp:CheckBoxList>         
    </asp:Panel>

.填充方法

 chblCustomers.Items.Add("CK");
                chblCustomers.Items.Add("Tommy");
                chblCustomers.Items.Add("C&A");
                chblCustomers.Items.Add("CK");
                chblCustomers.Items.Add("Tommyyyyyyyyyyyyy");
                chblCustomers.Items.Add("C&A");
                chblCustomers.Items.Add("CK");

及其CSS:

    .scrollingControlContainer
{
    overflow-x: auto;
    overflow-y: scroll;
}

结果

于 2016-12-05T11:25:37.273 回答