Skip to content

并集选择器 👼

所有的并集中的选择器具有相同的样式, 并集越并越大

css
选择器1,选择器2,...{
  样式属性:样式值;
}
.box1, .box2{
  color: red;
}

试一试