Firefox CSS表格内部div不正确

时间:2014-01-05 19:58:38

标签: jquery html css firefox css-tables

我有一个使用CSS设置的表格,如下所示:

<div id="page" class="table">
    <div class="row">
        <div class="cell">
            <div class="project" id="project-id">
                <a class="fancybox" rel="project-id" href="project-id/image.jpg"><img src="project-id/image.jpg" /></a>
            </div>
        </div>
    </div>
</div>

行中有4个<div class="cell">,共有4行。这在Safari,Chrome和Opera中正确显示。我现在无法在IE上测试,因为我没有Windows计算机,但是当我有机会时,我会...

我将网页上传到以下网址:http://schdri.comuv.com/

加载需要很长时间,请给它一些时间! 非常感谢你的帮助。

1 个答案:

答案 0 :(得分:0)

为什么不使用<table>代码?它应该适用于所有浏览器,并且可以在CSS中轻松格式化。

<table>
    <tr> <!-- table row -->
        <td> <!-- table cell -->
            <!-- cell content here -->
        </td>
    </tr>
</table>

您可以看到<table>规范here