blob: aa3cd52516377fc0be9d990193b9508a39f6d6bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<body style="font: 14px serif">
<div style="column-count:2; column-fill:auto; column-gap: 0; height: 100px; width: 550px; border: 1px solid black;">
<!-- First column -->
<div style="height: 100px;"></div>
<!-- Second column -->
<div>Spacer</div>
<div>
Lime float at right.
<span style="float:right; background: lime;">FLOAT</span>
</div>
</div>
</body>
</html>
|