blob: 8be4f109f2c41bbea20458f6bae04411540f83b1 (
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
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
The green square should always be rendered at 100px.
-->
<!DOCTYPE html>
<html>
<head>
<style>
body > div {
width: 200px;
height: 200px;
float: left;
}
body > div > div {
width: 100px;
height: 100px;
background: lime;
}
</style>
</head>
<body style="margin:0">
<div><div></div></div>
<div><div></div></div>
<div><div></div></div>
<div><div></div></div>
<div><div></div></div>
</body>
</html>
|