diff --git a/selectors-5/Overview.bs b/selectors-5/Overview.bs index 117df878b07..dcf734d8746 100644 --- a/selectors-5/Overview.bs +++ b/selectors-5/Overview.bs @@ -173,13 +173,16 @@ Heading Structures: the heading pseudo-classes '':heading'', and '':heading()''< As a functional pseudo-class, :heading() - notation represents elements that have a heading level among An+B. + notation represents elements that have a heading level among matching + any of the provided integer values. The syntax is:
- :heading() = :heading( <+ where># ) + :heading() = :heading( < ># )
<level> is a <:heading(-n+3) { font-weight: 900; }
- :heading(n+6) { font-weight: 500; }
+ :heading(1, 2, 3) { font-weight: 900; }
+ :heading(6, 7, 8, 9) { font-weight: 500; }
:heading(1, 2) { text-decoration: underline; }
- :heading(n+3) { text-decoration: none; }
+ :heading(3, 4, 5, 6, 7, 8, 9) { text-decoration: none; }