mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 19:03:07 +09:00
13 lines
241 B
HTML
13 lines
241 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span { color: red }
|
|
:checked + span { color: green }
|
|
input { display: none }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input type="checkbox" checked="checked" id="foo"><span>There should be no red</span>
|
|
</body>
|
|
</html>
|