列結合子

Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。

列結合子 (column combinator, ||) は、2 つの CSS セレクターの間に配置されます。前者のセレクターに一致する列要素に所属する、後者のセレクターに一致する要素に一致します。

/* 表の "selected" クラスの列に所属するセル */
col.selected || td {
  background: gray;
}

構文

column-selector || cell-selector {
  /* スタイルプロパティ */
}

HTML

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

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

関連情報