blob: 80b64f8f86a33e8d99ec9a053accc850ad33446c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!DOCTYPE HTML>
<html>
<body>
<style>
p { flex-grow: 1; }
</style>
<fieldset style="overflow:hidden; width:200px; height:200px;">
<legend>Legend</legend>
<div style="display:flex;">
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
</div>
</fieldset>
<fieldset>
<legend>Legend</legend>
<div style="display:flex;">
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
<p>X
</div>
</fieldset>
</body>
</html>
|