blob: 31c3daa0a2c5d8f6708807e69f4e1a35d9e323f0 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<html>
<head>
<title>Float Test Page</title>
<style type="text/css">
#redblock {
background: red;
width: 352px;
}
#wrapper {
border: 1px solid black;
width: 500px;
height: 200px
}
body {
font: 10px/1em Ahem;
}
li, ul {
display: inline;
margin: 0px 10px;
border: 0px;
padding: 0px;
}
ul {
padding-left: 40px;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="redblock">
<ul><li><img src="resources/checker.png" />
Should be all one line.</li>
</ul>
</div>
<div id="redblock">
<ul><li><img src="resources/checker.png" />
Should be all one line.</li>
</ul>
</div>
</div>
</div>
</body>
</html>
|