Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <style>
6 legend {
7 display: flex;
8 width: 200px;
9 height: 100px;
10 overflow: scroll;
11 border: 2px dashed gray;
12 }
13 div.child {
14 background: lightblue;
15 height: 1000px;
16 }
17 </style>
18 </head>
19 <body>
20 <fieldset>
21 <legend>
22 <div class="child">
23 There should be scrollbars making this area scrollable.
24 </div>
25 </legend>
26 </fieldset>
27 </body>
28 </html>