blob: ec7b973de21671e7fa68c2ab25a6265a819518c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<title>Test CSS margin auto</title>
<style>
div {height:100px}
.container {width:300px; background: lightgreen}
.child {width:100px; background: brown; margin-left:100px; margin-right:100px }
</style>
</head>
<body>
<div class="container">
<div class="child"></div>
</div>
</body>
</html>
|