blob: 4a151edf305641ac52074eab638d9e33c38cd93d (
plain)
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>
|