1
0
Fork 0
firefox/layout/reftests/columns/column-balancing-overflow-005.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
397 B
HTML

<html><head>
<style>
#colset { width: 200px;
column-count: 3;
column-gap: 4px;
padding: 4px;
outline: 1px orange solid; }
#b { height: 10px;
outline: 1px green dotted;}
#c { height: 12px; /* Create overflow for #b */
background: yellow;}
</style></head><body><div id="colset"><div id="b"><div id="c"></div></div></div>
</body></html>