mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
817ee803d6
This adds a CSS psuedo class to fieldset that acts much in the same way as the one on form.
12 lines
286 B
HTML
12 lines
286 B
HTML
<!DOCTYPE html>
|
|
<!-- Reference for input in nested fieldset becomes barred -->
|
|
<html>
|
|
<body>
|
|
<fieldset style="background-color: green;">
|
|
<fieldset style="background-color: green;">
|
|
<input id='i' required readonly>
|
|
</fieldset>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|