blob: 2eae0681bbb0b7c44e7152636e17cb65c26065a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<style>
div { float:left; border:2px solid black; height:200px; }
div.clear { clear:both; }
span { display:inline-block; width:100px; }
span.gap { width:80px; }
</style>
</head>
<body>
<div>
<span></span><span></span>
</div>
<div class="clear">
<span></span><span class="gap"></span><span></span>
</div>
</body>
</html>
|