input[type=checkbox]の:checkedで開閉パネル作ろうとしたら、詰まったのでメモ
#効かない
iOS7とiOS8で。
:checked+label+ul {
//効かない
}
#効く
間接セレクターか疑似クラスを使おう。
:checked ~ ul,
:checked + label:only-of-type + ul:only-of-type {
//効く
}
Go to list of users who liked
More than 5 years have passed since last update.
input[type=checkbox]の:checkedで開閉パネル作ろうとしたら、詰まったのでメモ
#効かない
iOS7とiOS8で。
:checked+label+ul {
//効かない
}
#効く
間接セレクターか疑似クラスを使おう。
:checked ~ ul,
:checked + label:only-of-type + ul:only-of-type {
//効く
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked