Version: 2023.2
Multiple selectors
伪类

Selector lists

A selector list is a comma-separated list of selectors that share the same style rule.

语法

A selector list consists of multiple selectors separated by commas:

selector1, selector2 {...}

示例

The following two USS snippets have the same effect.

# container2 {
  background-color: pink;
  border-radius: 10px;
}

Button {
  background-color: pink;
  border-radius: 10px;
}
# container2, Button {
   background-color: pink;
     border-radius: 10px;
 }

其他资源

Multiple selectors
伪类