blob: 0840e4337b7856dcb701d9e5da1e065bca9f92c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<title>Main should behave like a div</title>
</head>
<body>
<div style="margin-left: 20em; background: lightgreen">
div
</div>
<div style="margin-left: 20em; background: lightgreen">
main
</div>
<div style="margin-left: 20em; background: lightgreen">
header
</div>
<div style="margin-left: 20em; background: lightgreen">
footer
</div>
</body>
</html>
|