16 lines
450 B
HTML
16 lines
450 B
HTML
<!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>
|