css 垂直滚动在tbody中无法正常工作,打破了以前的tbody宽度

ckx4rj1h  于 2022-12-15  发布在  其他
关注(0)|答案(1)|浏览(191)

我有一个表,我需要在tbody中添加一个垂直滚动条。我看了一些代码,但不适合我或我不理解。我也不太擅长css。我添加了一个div并将我的tbody放在那里。它可以滚动,但tbody宽度变小了。
这是我的表:

<table id="familyHist" class="table table-striped table-bordered">
    <thead>
    <tr>
        <th colspan="{{(relationCount + 1)}}" class="info">
            <g:if test="${session.userIsPatient}">
                Please click the appropriate box to indicate family history for a given category or medical issue.
            </g:if>
            <g:else>
                Please click the appropriate box to indicate positive family history.
            </g:else>
        </th>
    </tr>
    <tr>
        <th></th>
        {{#each relations}}
            {{#if .relation !== 'Uncles' && .relation !== 'Aunts'}}
                <th class="text-center">{{relation}}*</th>
            {{else}}
                <th class="text-center">{{relation}}</th>
            {{/if}}
        {{/each}}
    </tr>
    </thead>
    <div style="width: inherit; overflow-y:scroll; height:100px; overflow-x: hidden;">
    <tbody>
    {{#each rows: index}}
    <tr id="familyHistoryRow-{{symptomId}}">
        <td>
            <input type="hidden" name="familyHistId" value={{familyHistId}}/>
            {{description}}
        </td>
        {{#if isUserDefined}}
        <td colspan="8">
            <div class="-fluid">
                <form class="form-inline">
                    <div class="col-sm-9 col-md-8 col-lg-7 form-group">
                        <g:render template="/patient/familyHist/textarea" />
                    </div>
                    <div class="col-sm-3 col-md-4 col-lg-5 form-group">
                        <g:render template="/patient/familyHist/buttons" />
                    </div>
                </form>
            </div>
        </td>
        {{else}}
        {{#each relationMap}}
        <td class="text-center">
            <g:render template="/patient/familyHist/checkbox" />
        </td>
        {{/each}}
        {{/if}}
    </tr>
    {{/each}}
    </tbody>
    </div>
</table>

下面是在tbody之前添加div之前的表格:

下面是在tbody前添加div后的表:

jq6vz3qz

jq6vz3qz1#

变更自:

<div style="width: inherit; overflow-y:scroll; height:100px; overflow-x: hidden;">
<tbody>

<tbody style="width: inherit; overflow-y:scroll; height:100px; overflow-x: hidden;">

相关问题