所以我有这种html
<div class="table-container">
<div class="title"> Title </div>
<table>
</table>
</div>
.table-container {
font-family: 'BlenderPro';
overflow-x: scroll;
padding-bottom: 20px;
margin-bottom: 40px;
margin-right: auto;
background: #ffffff;
}
.title {
font-family: 'RobotoMedium';
font-size: 1.5em;
font-weight: normal;
margin-bottom: 10px;
padding-bottom: 10px;
padding-left: 5px;
padding-top: 15px;
text-align: left;
color: #ffffff;
background: #3a3a3d;
border: 1px solid #ffffff;
}
现在,问题是我的标题没有随表格展开。因此,当出现溢出并且我向右滚动时,标题在我滚动时不会“跟上” - 标题的宽度比表格容器窄。
为什么以及如何使其扩展到该宽度?