blob: 621592358e88d84ea492569fe29ff03135f0c196 (
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>
<main style="margin-left: 20em; background: lightgreen">
main
</main>
<header style="margin-left: 20em; background: lightgreen">
header
</header>
<footer style="margin-left: 20em; background: lightgreen">
footer
</footer>
</body>
</html>
|