我有一张简单的桌子。
<table class='post-layout'>
<tbody>
<tr>
<td class='content'>
</td>
</tr>
</tbody>
</table>
我有简单的CSS,希望td.content
可以滚动(表是全屏,固定位置)。
.post-layout
{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
.post-layout .content
{
background-color: white;
overflow: scroll;
}
我看不出我做错了什么,但是当单元格包含大量内容时,它不会显示滚动条。当我检查表时,它的高度是正确的,但是td的高度比表父高。怎么会这样?
这是一个可以重现问题的sample jsfiddle。
答案 0 :(得分:4)
td
不支持溢出。
你需要做这样的事情:
... <td><div class="content"> Your content here </div></td> ...
编辑:第二个想法,你为什么要做这一切?
<div class="post-layout"> Your content here </div>
CSS就是你没有.content
的东西。
答案 1 :(得分:1)
答案 2 :(得分:1)
为所有div的父元素添加固定尺寸:http://jsfiddle.net/eeSBV/7/
.post-layout tbody,
.post-layout tr,
.post-layout td {
width: 100%;
height: 100%;
}
答案 3 :(得分:1)
你需要通过html结构将高度引用从父级传递到最后一个子级:
jsfiddle.net/eeSBV/6。 即使这样,如果内联块或浮动元素只需要一个父嵌套子元素,则不需要表。
.post-layout
{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 100%;
}
.post-layout tr,
.post-layout tbody,
.post-layout .content
}
height:100%;
}
.post-layout .content div
{
overflow:auto;
}
答案 4 :(得分:1)
表格显示类型不支持滚动,您可以尝试
.post-layout .content {
background-color: white;
overflow: auto;
display: block;
height: 200px;
}