我的HTML中有一个表格设置问题。我有三个标题,由于某种原因,他们没有占据完整的100%宽度。但是,身体确实占据了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>
答案 0 :(得分:3)
尝试在桌面上设置width="100%"
。我不确定你的班级做了什么。如果它没有设置100%的宽度,那就去做吧。
<table width="100%" id="timePreferenceTable" class="table-striped" cellpadding="0" cellspacing="0" border="0">