日期:2014-05-16  浏览次数:20538 次

啊啊啊,这两个到底有什么区别呢!!!
display:table和display:block这两个到底有什么区别呢?
都是变成块级元素,前后换行,有什么不一样呢?
------解决方案--------------------
这东西单独拿出来比较是没有太大意义的
此元素会作为块级表格来显示(类似 <table>),表格前后带有换行符。

<div style='display:table;border:1px solid red'>
<div style='display:table-row-group'>
<div style='display: table-row;'>
<div style='display: table-cell;'>AAA</div>
<div style='display: table-cell;'>BBB</div>
</div>
<div style='display: table-row;'>
<div style='display: table-cell;'>CCC</div>
<div style='display: table-cell;'>DDD</div>
</div>
</div>
</div>