gpt4 book ai didi

css - 只能垂直滚动的表格单元格

转载 作者:行者123 更新时间:2023-11-28 05:24:58 25 4
gpt4 key购买 nike

我正在使用以下 CSS 和 bootstrap 3 使表格单元格垂直滚动

#scrollable {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: auto;
}
<table table table-condensed table-hover style="table-layout: fixed;" >
<tr>
<td>
<div id="scrollable">something .................................long</div>
</td>
</tr>
</table>

它似乎只能水平滚动(只是不在这个片段中)。我曾尝试使用上述限制,但没有运气。有什么建议吗?

最佳答案

使用溢出-y

#scrollable  {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow-y: auto;
overflow-x: hidden;
}

关于css - 只能垂直滚动的表格单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38839317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com