1 2 3 4 5 6 7 8 9 10 11 12 13
<!DOCTYPE html> <html> <head> <style> span { color: green } :checked + span { color: red } input { display: none } </style> <body> <input checked="checked" id="foo"><span>There should be no red</span> </body> </html>