-
-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
Description
The red div should appear in the center:
Tested with:
<!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:auto }
</style>
</head>
<body>
<div class="container">
<div class="child"></div>
</div>
</body>
</html>This breaks a lot of pages that rely on this method to center content on the page.
