mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
23 lines
497 B
HTML
23 lines
497 B
HTML
|
|
<!DOCTYPE html>
|
|
<!-- Nested fieldsets should be assigned validation correctly -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
fieldset:valid { background-color: green; }
|
|
fieldset:invalid { background-color: red; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fieldset style="background-color:red;">
|
|
<fieldset style="background-color: green;">
|
|
<input>
|
|
</fieldset>
|
|
<fieldset style="background-color: red">
|
|
<input required>
|
|
</fieldset>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|
|
|