Created
October 3, 2011 17:57
-
-
Save mjuhl/1259766 to your computer and use it in GitHub Desktop.
Firefox fieldset element rendering bug #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Fieldset Issues</title> | |
<style> | |
body { | |
font: 1em/1.5 'helvetica neue', sans-serif; | |
} | |
fieldset.scrollable { | |
border: #ccc 1px solid; | |
padding: 12px 8px; | |
width: 200px; | |
height: 200px; | |
overflow: auto; | |
display: block; | |
} | |
</style> | |
</head> | |
<body> | |
<form> | |
<fieldset class="scrollable"> | |
<p>This fieldset has a specific height set, and overflow is set to auto. It should be scrollable.</p> | |
<p><label>Your Name<input type="text" id="name"></label></p> | |
<p><label>Comments<textarea id="comments"></textarea></p> | |
<p><button>Submit</button> | |
</fieldset> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found an open bug: https://bugzilla.mozilla.org/show_bug.cgi?id=261037