mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
29 lines
473 B
HTML
29 lines
473 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
legend {
|
|
display: flex;
|
|
width: 200px;
|
|
height: 100px;
|
|
overflow: scroll;
|
|
border: 2px dashed gray;
|
|
}
|
|
div.child {
|
|
background: lightblue;
|
|
height: 1000px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<fieldset>
|
|
<legend>
|
|
<div class="child">
|
|
There should be scrollbars making this area scrollable.
|
|
</div>
|
|
</legend>
|
|
</fieldset>
|
|
</body>
|
|
</html>
|