mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
17 lines
331 B
HTML
17 lines
331 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
span { color: red }
|
||
|
|
:default + span { color: green }
|
||
|
|
span.reverse { color: green }
|
||
|
|
:default + span.reverse { color: red }
|
||
|
|
input { display: none }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<form>
|
||
|
|
<input><input type="image"><span>This should be green</span>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|