【发布时间】:2020-08-15 10:56:36
【问题描述】:
我对表格响应类有一些问题,因为它在 css 上未指示时会在 y 轴上生成滚动。
这是问题的图片,我也复制了这个错误
<div id="app">
<div class="container">
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>N°</th>
<th>Test</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>
<multiselect
v-model="value"
:options="options"
:multiple="true"
track-by="library"
:custom-label="customLabel"
>
</multiselect>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
https://jsfiddle.net/ggalvez92/3d8h4sqy/
我试图把 overflow-y: visible 但似乎没有任何工作。
如果有人能帮我解决这个问题,我将不胜感激。
【问题讨论】:
标签: css vue.js bootstrap-4 vue-multiselect