mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
15 lines
317 B
HTML
15 lines
317 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span { color: red }
|
|
:checked + span { color: green }
|
|
input { display: none }
|
|
</style>
|
|
|
|
<body>
|
|
<input type="checkbox" checked="checked" id="foo"><span>There should be no red</span>
|
|
<input type="radio" checked="checked" id="foo"><span>There should be no red</span>
|
|
</body>
|
|
</html>
|