зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
218 B
HTML
14 строки
218 B
HTML
|
<!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>
|