html – border-collapse的组合:collapse和transform:translate

前端之家收集整理的这篇文章主要介绍了html – border-collapse的组合:collapse和transform:translate前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下问题:当我从表中翻译标题单元格并将表格设置为border-collapse:collapse时,单元格将被移动但不会移动它们的边框.我创建了一个测试:

标记

<table>
    <thead>
        <th>Test 1</th>
        <th>Test 2</th>
        <th>Test 3</th>
    </thead>
    <tbody>
        <tr>
            <td>asdasd</td>
            <td>adasdasd</td>
            <td>adasdasd</td>
        </tr>
    </tbody>
</table>

样式:

table{
    border-spacing: 0;
    border-collapse: collapse;
    background: #efefef;
}

th {
    background:#ccc;
    border-right: 1px #000 solid;
    transform: translate(-10px,0);
}

http://jsfiddle.net/rs0h9tbu/2

如果我将border-collapse更改为separat,一切正常.
这是一个错误,还是任何人都可以解释这种行为?

解决方法

这是折叠边框模型的行为.当border-collapse设置为折叠时,单元格将与作为表格的edge元素的边框共享边框.如果将其设置为分离,则单元格具有自己的边框.

从这个参考:https://developer.mozilla.org/en/docs/Web/CSS/border-collapse

The border-collapse CSS property determines whether a table’s borders
are separated or collapsed. In the separated model,adjacent cells
each have their own distinct borders. In the collapsed model,adjacent
table cells share borders.

从这个规范:http://www.w3.org/TR/CSS2/tables.html#border-conflict-resolution

In the collapsing border model,borders at every edge of every cell
may be specified by border properties on a variety of elements that
meet at that edge (cells,rows,row groups,columns,column groups,
and the table itself)

这就是为什么在翻译单元格时,只有单元格会移动,因为它们没有自己的边框,只共享边缘元素(即表格)的边框.

如果你真的需要转换并移动第三个单元格,那么将边框折叠保持为独立并单独控制td / th上的边框.

像这样的东西:

table {
    border-spacing: 0px;
    border: 1px solid #333;
    background: #efefef;
    border-collapse: separate;
}

th,td { border: 1px solid #333; }
td { border-right: 0px; }
td:first-child { border-left: 0px; }
tbody > tr:last-child > td { border-bottom: 0px; }
th { background: #ccc; transform: translate(50px,50px); }
<table>
    <thead>
        <tr>
            <th>Test 1</th>
            <th>Test 2</th>
            <th>Test 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>asdasd</td>
            <td>adasdasd</td>
            <td>adasdasd</td>
        </tr>
    </tbody>
</table>
原文链接:https://www.f2er.com/html/231540.html

猜你在找的HTML相关文章