Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 369 Bytes

selector-grouping.md

File metadata and controls

22 lines (17 loc) · 369 Bytes

Selector grouping with the :any pseudo class (modelled after CSS4 :matches) simplifies the creation of complex selector chains.

:any( .sidebar, .block ) a:any( :hover, :focus ) {
  color: lemonchiffon;
}
.block a:hover,
.block a:focus,
.sidebar a:hover,
.sidebar a:focus {
  color: lemonchiffon;
}