--- title: 列結合子 slug: Web/CSS/Column_combinator tags: - CSS - 実験的 - リファレンス - セレクター - 表 browser-compat: css.selectors.column translation_of: Web/CSS/Column_combinator --- {{CSSRef("Selectors")}}{{SeeCompatTable}} **列結合子** (column combinator, `||`) は、2 つの CSS セレクターの間に配置されます。前者のセレクターに一致する列要素に所属する、後者のセレクターに一致する要素に一致します。 ```css /* 表の "selected" クラスの列に所属するセル */ col.selected || td { background: gray; } ``` ## 構文 ```css column-selector || cell-selector { /* スタイルプロパティ */ } ``` ## 例 ### HTML ```html
A B C
D E
F G
``` ### CSS ```css col.selected || td { background: gray; color: white; font-weight: bold; } ``` ### 結果 {{EmbedLiveSample("Examples", "100%")}} ## 仕様書 {{Specifications}} ## ブラウザーの互換性 {{Compat}} ## 関連情報 - {{HTMLElement("col")}} - {{HTMLElement("colgroup")}} - {{CSSxRef("grid")}} - {{CSSxRef(":nth-col")}} - {{CSSxRef(":nth-last-col")}}