mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
40 lines
352 B
CSS
40 lines
352 B
CSS
|
div, div + #id, div ~ #id, div > #id {
|
||
|
|
||
|
}
|
||
|
|
||
|
.escaped\.class\.name {
|
||
|
|
||
|
}
|
||
|
|
||
|
.class + * {
|
||
|
|
||
|
}
|
||
|
|
||
|
a[title] {
|
||
|
color: purple;
|
||
|
}
|
||
|
|
||
|
a[title = "title"] {
|
||
|
color: purple;
|
||
|
}
|
||
|
|
||
|
a[title~="title" i] {
|
||
|
color: purple;
|
||
|
}
|
||
|
|
||
|
a[title = "title"][href*="image/*" S] {
|
||
|
color: purple;
|
||
|
}
|
||
|
|
||
|
p:nth-last-of-type(2) {
|
||
|
}
|
||
|
|
||
|
:lang(en, ko) {
|
||
|
}
|
||
|
|
||
|
::pseudo-elem() {
|
||
|
}
|
||
|
|
||
|
::pseudo-elem(a, b) {
|
||
|
}
|