这个
<table> <tr> <td>Hello</td> <td>World</td> </tr> </table>
可以做到这一点:
<div> <div style="display: table-row;"> <div style="display: table-cell;">Hello</div> <div style="display: table-cell;">World</div> </div> </div>
现在,这两者之间在性能和/或渲染速度方面有什么区别吗?或者它们是一样的?