blob: 8ce12b4ccdf79aa92f20c00d67d27ab32cfeafa7 (
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
|
<html>
<head>
<style>
body {
/* Standize line-height, because the default varies by platform */
line-height: 50px;
}
div#a {
width: 3em;
column-count: 2;
column-gap: 0px;
background: lightgreen;
}
div#b {
height: 100px;
float: left;
background: lightblue;
}
div#c {
height: 100px;
background: orange;
}
</style>
</head>
<body>
<div id="a">
<div id="b"><br/><br/>b</div>
<div id="c">c c c</div>
</div>
</body>
</html>
|