Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 IE10 中存在一个奇怪的错误,导致页面加载时某些边框不显示。奇怪的是,当您在页面内和/或它们应该显示的区域中单击时,它们确实会出现。
有没有人经历过这个并想出如何解决它?
在IE10中直到onclick才出现边框是由于使用border-collapse和colspan引起的错误。
我使用的解决方法/修复是创建一行,其中一个单元格添加显示无。此行和单元格需要放置在有问题的 colspan 行/单元格上方。
代码示例...
<tr> <td colspan="4" style="display: none;"></td> </tr> <tr> <td colspan="4" style="display: none;"> Your content here </td> </tr>