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.
我在那个表里面有一个 html 表我有两行像 <table> <tr> <td></td> <td> </td> . . . <td> </td>
<table>
<tr>
<td></td>
<td> </td>
.
<td>
</td>
</tr> <tr> </tr> table
</tr>
table
问题是每当我将样式设置为<tr display:block>对齐在 Firefox 中混乱但它仅在 IE 中工作正常。有人请帮忙吗?我有很多谷歌,找不到解决方案。我已经设置%了我的td标签
<tr display:block>
%
td
这是解决方案,
要显示tr,请使用display:table-row而不是display:block。
tr
display:table-row
display:block
要显示td,请使用display:table-cell而不是display:block。
display:table-cell