我在客户端项目中使用一个简单的表,
<table>
<thead>
<tr>
<th>content</th>
</tr>
</thead>
<tbody>
<tr>
<td>more content</td>
</tr>
</tbody>
</table>
在IE11中,TH中的内容是可见的,但TD中的内容不是。在源代码中一切都很好,表格加载很好,但所有TD都表现得像空单元格。
任何线索?
有关记录, - 该网站使用Visual Composer在Wordpress上 - 出于测试目的,我创建了一个仅包含表格的emtpy页面,没有特定的CSS,但问题仍然存在 - 在IE11 View中,一切都很好 - 操作系统是Win Vista
答案 0 :(得分:0)
尝试将标题行放在&lt; thead&gt;中和你的身体在&lt; tbody&gt;。
<table>
<thead>
<tr>
<th>content</th>
</tr>
</thead>
<tbody>
<tr>
<td>more content</td>
</tr>
</tbody>
</table>
答案 1 :(得分:0)
将您的代码更改为:
<table>
<thead>
<tr>
<th>content</th>
</tr>
</thead>
<tbody>
<tr>
<td>more content</td>
</tr>
</tbody>
</table>