小编典典

CSS“显示:表列”应该如何工作?

css

鉴于以下HTML和CSS,我在浏览器中看不到任何东西(撰写本文时,Chrome和IE最新)。一切都崩溃为0x0像素。为什么?

<!DOCTYPE html>
<html>
<head>
    <style type="text/css">
        section { display: table; height: 100%; background-color: grey; }

        #colLeft { display: table-column; height: 100%; background-color: green; }
        #colRight { display: table-column; height: 100%; background-color: red; }

        #row1 { display: table-row; height: 100%; }
        #row2 { display: table-row; height: 100%; }
        #row3 { display: table-row; height: 100%; }

        #cell1 { display: table-cell; height: 100%; }
        #cell2 { display: table-cell; height: 100%; }
        #cell3 { display: table-cell; height: 100%; }
    </style>
</head>
<body>
    <section>
        <div id="colLeft">
            <div id="row1">
                <div id="cell1">
                    AAA
                </div>
            </div>
            <div id="row2">
                <div id="cell2">
                    BBB
                </div>
            </div>
        </div>
        <div id="colRight">
            <div id="row3">
                <div id="cell3">
                    CCC
                </div>
            </div>
        </div>
    </section>
</body>
</html>

阅读 321

收藏
2020-05-16

共1个答案

小编典典

CSS表模型基于HTML表模型

一个表分为ROWS,并且每一行包含一个或多个单元格。单元格是ROWS的子级,它们是列的子级。

“ display:table-column”不提供用于制作列式布局的机制(例如,具有多列的报纸页面,其中内容可以从一列流向下一列)。

而是,“表列”仅设置应用于表行中相应单元格的属性。例如,可以描述“每行中第一个单元格的背景颜色是绿色”。

该表本身的结构始终与HTML中的结构相同。

在HTML中(请注意,“ td”位于“ tr”内部,而不位于“ col”内部):

<table ..>
  <col .. />
  <col .. />
  <tr ..>
    <td ..></td>
    <td ..></td>
  </tr>
  <tr ..>
    <td ..></td>
    <td ..></td>
  </tr>
</table>

使用CSS表属性的相应HTML(请注意,“ column” div不包含任何内容,该标准不允许直接在列中包含内容):

.mytable {

  display: table;

}

.myrow {

  display: table-row;

}

.mycell {

  display: table-cell;

}

.column1 {

  display: table-column;

  background-color: green;

}

.column2 {

  display: table-column;

}


<div class="mytable">

  <div class="column1"></div>

  <div class="column2"></div>

  <div class="myrow">

    <div class="mycell">contents of first cell in row 1</div>

    <div class="mycell">contents of second cell in row 1</div>

  </div>

  <div class="myrow">

    <div class="mycell">contents of first cell in row 2</div>

    <div class="mycell">contents of second cell in row 2</div>

  </div>

</div>


可选
:可以通过如下方式为每行和每个单元格分配多个类来设置“行”和“列”的样式。这种方法在指定要设置样式的各种单元格或单个单元格时提供了最大的灵活性:

//Useful css declarations, depending on what you want to affect, include:



/* all cells (that have "class=mycell") */

.mycell {

}



/* class row1, wherever it is used */

.row1 {

}



/* all the cells of row1 (if you've put "class=mycell" on each cell) */

.row1 .mycell {

}



/* cell1 of row1 */

.row1 .cell1 {

}



/* cell1 of all rows */

.cell1 {

}



/* row1 inside class mytable (so can have different tables with different styles) */

.mytable .row1 {

}



/* all the cells of row1 of a mytable */

.mytable .row1 .mycell {

}



/* cell1 of row1 of a mytable */

.mytable .row1 .cell1 {

}



/* cell1 of all rows of a mytable */

.mytable .cell1 {

}


<div class="mytable">

  <div class="column1"></div>

  <div class="column2"></div>

  <div class="myrow row1">

    <div class="mycell cell1">contents of first cell in row 1</div>

    <div class="mycell cell2">contents of second cell in row 1</div>

  </div>

  <div class="myrow row2">

    <div class="mycell cell1">contents of first cell in row 2</div>

    <div class="mycell cell2">contents of second cell in row 2</div>

  </div>

</div>

在当今<div>有多种用途的灵活设计中,明智的做法是在每个div上放置 一个
类,以帮助引用它。在这里,曾经<tr>在HTML中的内容变成了class myrow,并且<td>变成了class mycell。这个约定使上面的CSS选择器有用。

性能注意 :将类名放在每个单元格上,并使用上面的多类选择器,比使用以结尾的选择器*(例如.row1 *或甚至)要好.row1 > *。原因是选择器 首先 匹配,所以在寻找匹配元素时,.row1 *首先*匹配 所有 元素,然后检查 每个元素的所有祖先
,以查找是否有祖先class row1。在速度较慢的设备上的复杂文档中,这可能会很慢。.row1 > *更好,因为只检查直系父母。但是,最好还是立即通过消除大多数元素.row1 .cell1。(.row1 > .cell1是一个更加严格的规范,但这是搜索的第一步,它会带来最大的不同,因此通常不值得一团糟,而且,对于是否将始终是直接子对象,需要进行额外的思考过程子选择器>。)

取消重新 性能 的关键是选择器中的 最后 一项应该 尽可能具体 ,而绝不能如此*

2020-05-16