1

所以我有这种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;
}

现在,问题是我的标题没有随表格展开。因此,当出现溢出并且我向右滚动时,标题在我滚动时不会“跟上” - 标题的宽度比表格容器窄。

为什么以及如何使其扩展到该宽度?

4

2 回答 2

0

将标题的宽度设置为 100%。

于 2013-08-13T20:34:27.747 回答
0

您的标题样式应将宽度设置为其父级的 100%。这可以通过将您的 css 文件更改为:

.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;
  width: 100%;
}
于 2013-08-13T21:48:02.490 回答