回答編集履歴
1
修正
test
CHANGED
@@ -4,9 +4,47 @@
|
|
4
4
|
|
5
5
|
```CSS
|
6
6
|
|
7
|
-
[class*="wrap-0"]:not(.wrap-01):not(.wrap-02):not(.wrap-03):not(.wrap-05):not(.wrap-06):not(.wrap-07):not(.wrap-09) label{
|
7
|
+
[class*="wrap-0"]:not(.wrap-01):not(.wrap-02):not(.wrap-03):not(.wrap-05):not(.wrap-06):not(.wrap-07):not(.wrap-09) label {
|
8
8
|
|
9
9
|
background-color:red;
|
10
|
+
|
11
|
+
}
|
12
|
+
|
13
|
+
```
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```CSS
|
18
|
+
|
19
|
+
[class*="wrap-0"] label {
|
20
|
+
|
21
|
+
background-color: red;
|
22
|
+
|
23
|
+
}
|
24
|
+
|
25
|
+
[class*="wrap-0"]:not([class*="wrap-04"]):not([class*="wrap-08"]) label {
|
26
|
+
|
27
|
+
background-color: transparent;
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
```CSS
|
36
|
+
|
37
|
+
// シンプルにしたい、という意図ならSass (SCSS) だと、以下のような記述もできると思います。
|
38
|
+
|
39
|
+
.wrap-04,
|
40
|
+
|
41
|
+
.wrap-08 {
|
42
|
+
|
43
|
+
label {
|
44
|
+
|
45
|
+
background-color: red;
|
46
|
+
|
47
|
+
}
|
10
48
|
|
11
49
|
}
|
12
50
|
|