blob: 5a70a21c17697a28f1424af9bef43f58f19461e8 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>CSS Reftest Reference</title>
<link rel="author" title="Kyle Zentner" href="mailto:zentner.kyle@gmail.com">
<style>
body {
margin: 0;
}
#left {
float: left;
height: 50px;
width: 10px;
background: blue;
}
#a {
background: green;
margin: 10px;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<div id="left"></div>
<div id="a"></div>
</body>
</html>
|