質問編集履歴

1

css 変更

2018/12/20 01:07

投稿

kumakumatan
kumakumatan

スコア213

test CHANGED
File without changes
test CHANGED
@@ -92,4 +92,36 @@
92
92
 
93
93
 
94
94
 
95
+ 通常だと[#id名]なので
96
+
97
+ ```css
98
+
99
+ #f-option input[type=radio]:checked ~ .check {
100
+
101
+ border: 5px solid blue;
102
+
103
+ }
104
+
105
+
106
+
107
+ #f-option input[type=radio]:checked ~ .check::before{
108
+
109
+ background: blue;
110
+
111
+ }
112
+
113
+
114
+
115
+ #f-option input[type=radio]:checked ~ label{
116
+
117
+ color: blue;
118
+
119
+ }
120
+
121
+ ```
122
+
123
+ としたら何も色が表示されないでいます。
124
+
125
+
126
+
95
127
  ご教授宜しくお願いします。