こんにちは
私は困っています2時間
疑似要素を使って別の要素を変更したいscssで
radioボタン押すとネクストクラスの背景色を変えたい
しかし変わりません
あなたが私を助けるのを待っています
下にコードを書きました。
html
1 <div class="container"> 2 . 3 . 4 <div class="inputs"> 5 <input type="radio"> 6 </div> 7 . 8 . 9 </div> 10 11 <button class="next"> 12 <p>next</p> 13 </button>
scss
1 .container{ 2 .inputs{ 3 input{ 4 &:checked + .next{ 5 background-color: green; 6 pointer-events: auto; 7 } 8 } 9 } 10 } 11 12 .next { 13 background-color: transparent; 14 pointer-events: none; 15 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/03 06:20
2020/08/03 06:26
2020/08/03 06:29