我正在以编程方式填充 GridView,我想让它有一个滚动条(而不是一直向下扩展屏幕)。正如我在 Google 上找到的其他解决方案中所建议的那样,我尝试将以下内容添加到 CSS 中:
.gridView {
width:600px;
margin-left:auto;
margin-right:auto;
height:500px;
overflow:auto;
}
但这没有任何效果。我还可以做些什么?
编辑:这是在输出中应用上述样式的方式:
<table class="gridView" cellspacing="0" rules="all" border="1" id="PanelGridView" style="background-color:White;border-collapse:collapse;">
gridView 类显示为表的类,我通过查看正在应用的其他样式更改验证了 CSS 文件是否链接到 ASPX。