2

我在这里有一个 jsfiddle:http: //jsfiddle.net/m4HB3/

我有一个带有固定标题的滚动表,它工作正常。我遇到的问题是滚动条的放置位置,它被放置在最后一列的下方,这导致它占用了最后一列的一些空间,从而使其他列偏离对齐。

我的问题是如何将滚动条剪辑到表格的右侧,这样它就不会影响占用列空间?

下面是示例表的html:

<table id="tableqanda" cellpadding="0" cellspacing="0">
    <thead>
    <tr>
        <th width="5%" class="questionno">Question No.</th>
        <th width="27%" class="question">Question</th>
        <th width="7%" class="option">Option Type</th>
        <th width="11%" class="image">Image</th>

    </tr>
    </thead>
    </table>
    <div id="tableqanda_onthefly_container">
    <table id="tableqanda_onthefly" cellpadding="0" cellspacing="0">
    <tbody>
        <tr class="tableqandarow">
<td width="5%" class="questionno">1</td>
<td width="27%" class="question">What is a RAM?</td>
<td width="7%" class="option">A-E</td>
<td width="11%" class="imagetd"><ul class="qandaul"><li>Lighthouse_4.jpg</li></ul></td>
</tr>
<tr class="tableqandarow">
<td width="5%" class="questionno">2</td>
<td width="27%" class="question">Name 3 car maneuvers you may do in a test?</td>
<td width="7%" class="option">A-F</td>
<td width="11%" class="imagetd"><ul class="qandaul"><li>Tulips_3.jpg</li></ul></td>
</tr>
    </tbody>
    </table>
    </div>

下面是css:

#tableqanda_onthefly_container
{
    width:100%;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height:500px;
}

#tableqanda_onthefly
{
    width:100%;
    overflow:scroll;
    clear:both;
}

#tableqanda_onthefly td
{
    border:1px black solid;
    border-collapse:collapse;
}

#tableqanda, #tableqanda_onthefly{
    border:1px black solid;
    border-collapse:collapse;
    table-layout:fixed;
    word-wrap:break-word;
}       

#tableqanda{
    width:100%;
    margin-left:0;
    float:left;
}

#tableqanda td { 
    vertical-align: middle;
    border:1px black solid;
    border-collapse:collapse;
}

#tableqanda th{
    border:1px black solid;
    border-collapse:collapse;
    text-align:center;
}

.tableqandarow{
    border:1px black solid;
    border-collapse:collapse;
}
4

3 回答 3

2

试试这个小提琴:http: //jsfiddle.net/m4HB3/29/

我只是将您包装到一个IDtable为 的容器中,从表中删除您的属性并在包含的 div 上设置以下内容(您可以将高度更改为您想要的任何值,我只是将其保留为 75 以进行演示):divcontaineroverflow

#container
{
    height: 75px;
    overflow-x: auto;
}

编辑:经过一些调整,这就是他想要的http://jsfiddle.net/m4HB3/37/

于 2013-01-25T00:06:43.033 回答
0

不完全解决您的特定目标,但作为一种解决方法,您可以在标题的末尾添加一个额外的 TD 并将其设置为滚动条的宽度。

http://jsfiddle.net/m4HB3/28/

<thead>
    <tr>
        <th width="5%" class="questionno">Question No.</th>
        <th width="27%" class="question">Question</th>
        <th width="7%" class="option">Option Type</th>
        <th width="11%" class="image">Image</th>
        **<th width="8px" class=""></th>**
    </tr>
</thead>

这至少会让它看起来更漂亮。

于 2013-01-25T00:10:19.690 回答
0

这里我对 CSS 表格 + 滚动 + 浏览器有一个完整的解释

希望对你有帮助

于 2014-03-17T13:09:11.547 回答