4

我有一张桌子,希望第一列有一个垂直滚动条。这适用于 iPad 上的 Chrome、IE9、Safari,但不适用于 Firefox?为什么不?我究竟做错了什么?

HTML:

    <table>
        <tbody>
            <tr>
                <td class="col1">
                    <div class="wrapper">
                        <p>Test</p>
                        <p>Test</p>
                        <p>Test</p>
                        <p>Test</p>
                        <p>Test</p>
                        <p>Test</p>
                        ...
                    </div>
                </td>
                <td class="col2">
                </td>
            </tr>
        </tbody>
    </table>

CSS:

html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}

table {
width: 100%;
height: 100%;
}

table .col1 {
width: 20%;
height: 100%;
}

table .col1>div.wrapper {
width: 100%;
height: 100%;
overflow: auto; 
}

table .col2 {
width: 80%;
height: 100%;
background-color: red;
}
4

1 回答 1

5

问题:

overflow:scroll;不会在table.

如果你对 a 做同样的事情div,那么它会正常工作。

查看实时示例

例子:

HTML

<div class="col1" >
    <div class="wrapper">
        <p>Test</p>
        <p>Test</p>
        <p>Test</p>
        <p>Test</p>
        <p>Test</p>
    ...
    </div>
</div><div class="col2">
</div>

更多阅读: http: //lists.w3.org/Archives/Public/www-style/2006Mar/0030.html#replies

谢基尔坦

于 2013-01-27T13:19:04.253 回答