blob: 6b6a53166077f25de5f6fa7fce4a70f49446c533 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<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>
|