Learning_GTK4_tree/testsuite/reftests/css-match-siblings.css

20 lines
173 B
CSS
Raw Permalink Normal View History

2023-12-12 11:36:42 +01:00
* + *,
#red {
color: red;
}
* ~ * ~ label,
#lime {
color: lime;
}
* ~ * + label ~ *,
#blue {
color: blue;
}
* + label ~ * ~ label + *,
#purple {
color: purple;
}