We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 499a88f commit 65bd6a4Copy full SHA for 65bd6a4
1 file changed
css-conditional-4/Overview.bs
@@ -63,6 +63,21 @@ Extensions to the ''@supports'' rule</h2>
63
js/CSS-supports-L4.html
64
</wpt>
65
66
+<div class="example" id="ex-selector">
67
+ This example tests whether the
68
+ <a>column combinator</a> (||)
69
+ is supported in selectors,
70
+ and if so uses it to style particular cells in a table.
71
+
72
+ <pre class="lang-css">
73
+ @supports selector(col || td) {
74
+ col.selected || td {
75
+ background: tan;
76
+ }
77
78
+ </pre>
79
+</div>
80
81
<h3 id="support-definition-ext">
82
Extensions to the definition of support</h3>
83
0 commit comments