What is the answer to life the universe and everything?
42
Select elements anywhere on the page if a specific selector exists.
In this example if the checkbox is checked / unchecked, blur / unblur the answers and change the contents of the checkbox label.
body:has(input.blur-answers:checked) .answer {
filter: blur(3px);
}
body:has(input.blur-answers:checked) .visibility-label::before {
content: "Hide "
}
body:not(:has(input.blur-answers:checked)) .visibility-label::before {
content: "Show "
}
42
sec
document .querySelector('.thing') .closest('.parent');