mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
18 lines
324 B
HTML
18 lines
324 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>
|
|
</form>
|
|
</body>
|
|
</html>
|