77
<html>
    <style type="text/css">
        .table   { display: table;}
        .tablerow  { display: table-row; border:1px solid black;}
        .tablecell { display: table-cell; }
    </style>
    <div class="table">
        <div class="tablerow">
            <div class="tablecell">Hello</div>
            <div class="tablecell">world</div>
        </div>
        <div class="tablerow">
            <div class="tablecell">foo</div>
            <div class="tablecell">bar</div>
        </div>
    </div>
</html>

根据我的理解,应该在我通过 tablerow 类指定的每一行上绘制一个黑色边框。但是边界没有出现。

我想改变一行的高度。如果我用 'px' 指定它——它可以工作。但是,如果我给它一个 % -- 将不起作用。我尝试了以下

.tablerow  { 
    display: table-row;
    border:1px solid black;
    position: relative; //not affecting anything and the border disappears!! 
    //position: absolute; // if this is set,the rows overlaps and the border works
    height: 40%; // works only if specified in px and not in %
}

某处出了点问题,但我无法理解在哪里。请帮忙!

4

3 回答 3

172

您需要添加border-collapse: collapse;.table类中才能使其像这样工作:

<html>
<style type="text/css">
    .table   { display: table; border-collapse: collapse;}
    .tablerow  { display: table-row; border: 1px solid #000;}
    .tablecell { display: table-cell; }
</style>
<div class="table">
    <div class="tablerow">
        <div class="tablecell">Hello</div>
        <div class="tablecell">world</div>
    </div>
    <div class="tablerow">
        <div class="tablecell">foo</div>
        <div class="tablecell">bar</div>
    </div>
</div>
</html>
于 2011-08-24T12:18:15.387 回答
2

您需要添加bordertablecell类。

此外,为了让它看起来不错,您需要添加border-collapse:collapse;到表类中。

示例:http: //jsfiddle.net/jasongennaro/4bvc2/

编辑

根据评论

我正在为 div 应用边框,它应该正确显示吗?

是的,但是一旦您将其设置为显示为 a table,它将如何发挥作用......作为 a table,因此您将需要遵循 css 规则来显示表格。

如果您需要border在行上设置唯一,请使用border-top然后border-bottom 为最左边和最右边的单元格设置特定的类。

于 2011-08-24T12:06:48.353 回答
2

表格行不能有边框属性。您可以通过为所有单元格设置一个顶部和底部边框,并为最左侧和最右侧的单元格分别添加一个具有左右边框的类,从而获得每行的边框。

JS小提琴链接

编辑:我忘记了border-collapse:collapse。那也行。

于 2011-08-24T12:17:47.773 回答