blob: 60aa2ea3527b4c1212640c7df064c39f80e5d9ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<style>
div { column-count:2; column-gap:0; border:2px solid black; height:200px; }
div.gap { column-gap:80px; }
span { display:inline-block; width:100px; }
</style>
</head>
<body>
<table cellpadding=0 cellspacing=0 width="1"><tr><td><div>
<span></span>
</div></tr></td></table>
<table cellpadding=0 cellspacing=0 width="1"><tr><td><div class="gap">
<span></span>
</div></tr></td></table>
</body>
</html>
|