背景:
我正在使用 CSS 来创建类似体验的 Web 应用程序,其中页面上的所有内容始终可见,并且只有某些内容panes
是可滚动的。我现在需要将其扩展到表格。我希望表格标题始终保持可见(有时是页脚),但表格主体应该只能滚动。
到目前为止,我所做的是将“窗格”类应用于thead
and tfoot
,然后tbody
自动填充高度,然后使其可滚动。除了 thead、tbody 和 tfoot 不再是 100% 宽度之外,所有这些都有效。这种方法似乎让我最接近我想要的。
Fiddle:
我有一个 JSFiddle 让我很接近,它还演示了我用来创建 fixed 和 scrollable 的代码panes
。http://jsfiddle.net/va4HF/1/
要求:理想情况下,我希望保持我的pane
css 不变,但在需要表格时对其进行调整。我也想只保留这个 CSS。
以下代码是我的概念验证代码,也包括窗格 CSS。
HTML:
<div class="column">
<div class="pane top">Top</div>
<div class="pane middle">
<table>
<thead class="pane table-head">
<tr>
<th>Header</th>
</tr>
</thead>
<tbody class="pane table-body fill">
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
<tr><td>Text</td></tr>
</tbody>
<tfoot class="pane table-foot">
<tr>
<th>Footer</th>
</tr>
</tfoot>
</table>
</div>
<div class="pane bottom">Bottom</div>
</div>
CSS:
body, html {
height:100%;
margin:0;
padding:0;
}
div {
box-sizing:border-box;
box-sizing:content-box\9; /* Fix for IE9 sizing */
-moz-box-sizing:border-box; /* Fix for firefox sizing */
}
.column {
position:absolute;
width:100%;
min-height:100%;
height:auto;
overflow:hidden;
}
.pane {
position:absolute;
width:100%;
overflow:hidden;
}
.fill {
height:auto;
overflow:auto;
}
.top {
background:pink;
height: 20%;
top:0;
}
.middle {
background:red;
top:20%;
bottom:50px;
}
.table-head {
height: 40px;
top:0;
}
.table-body {
top:40px;
bottom:40px;
}
.table-foot {
height: 40px;
bottom:0;
}
.bottom {
background:orange;
height: 50px;
bottom:0;
}
table thead tr, table tfoot tr {background:rgba(0,0,0,0.5);}
table tbody tr {background:rgba(0,0,0,0.3);}
table td, table th {padding:10px; color:#fff;}
/* Fix for Safari scrollbars (also styles Chrome scrollbars) */
.fill::-webkit-scrollbar {-webkit-appearance: none;width: 10px;}
.fill::-webkit-scrollbar-track {background-color: rgba(0,0,0, .3);border-radius: 0px;}
.fill::-webkit-scrollbar-thumb {border-radius: 0px; background-color: rgba(255,255,255, .4);}
研究:其他人在使用固定页眉/页脚填充 100% 父高度的表格中提出了类似的问题,但从未得到良好的响应并最终使用 Javascript,但我想尝试找到一个 CSS 解决方案。或者至少比他使用的更简单的 Javascript 解决方案(避免覆盖三个表)