mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-01 06:06:32 +00:00
19 lines
350 B
HTML
19 lines
350 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 type="image"><span>This should be green</span>
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|