0

我的 HTML 中的一个表设置存在问题。我有三个标题标题,由于某种原因,它们没有占据完整的 100% 宽度。但是,body 确实占据了 100% 的宽度。我不太确定发生了什么。我有另一张工作得很好的桌子。我附上了一张图片和表格的html代码。即使我删除了指定的宽度百分比,显示仍将与下图中的相同。任何帮助将非常感激!提前致谢!

<table id="timePreferenceTable" class="table-striped" cellpadding="0" cellspacing="0" border="0">
  <thead>
    <tr>
      <th width="34%">Start Time</th>
      <th width="34%">End Time</th>
      <th width="32%">Days</th>
    </tr>
  </thead>
  <tbody></tbody>
</table>

HTML-TABLE-TH-BUG

4

1 回答 1

3

试着width="100%"放在你的桌子上。我不确定你的课是做什么的。如果它没有将宽度设置为 100%,请执行此操作。

<table width="100%" id="timePreferenceTable" class="table-striped" cellpadding="0" cellspacing="0" border="0">
于 2013-04-14T13:56:00.523 回答