Column combinator

实验性: 这是一项实验性技术
在将其用于生产之前,请仔细检查浏览器兼容性表格

通过列合并符 (||) 链接两个元素时,它只会匹配被第二个 CSS 选择器匹配的元素,且此元素属于被第一个 CSS 选择器匹配的列元素。

css
/* 属于"被选择"列的表单元格 */
col.selected||td {
  background: gray;
}

语法

column-selector || cell-selector {
  /* style properties */
}

示例

HTML

html
<table border="1">
  <colgroup>
    <col span="2" />
    <col class="selected" />
  </colgroup>
  <tbody>
    <tr>
      <td>A</td>
      <td>B</td>
      <td>C</td>
    </tr>
    <tr>
      <td colspan="2">D</td>
      <td>E</td>
    </tr>
    <tr>
      <td>F</td>
      <td colspan="2">G</td>
    </tr>
  </tbody>
</table>

CSS

css
col.selected||td {
  background: gray;
  color: white;
  font-weight: bold;
}

结果

规范

Specification
Selectors Level 4
# the-column-combinator

浏览器兼容性

BCD tables only load in the browser

参见