Skip to content

Instantly share code, notes, and snippets.

@jieter
Created November 20, 2013 12:48
Show Gist options
  • Save jieter/7562595 to your computer and use it in GitHub Desktop.
Save jieter/7562595 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
.center, .inner {
min-height: 400px;
}
.center{
margin: 0px auto;
width: 400px;
border: 1px solid red;
}
.inner {
width: 500px;
border: 1px solid blue;
}
</style>
</head>
<body>
<div class="center">
center, rode rand.
<div class="inner">
'inner'<br />
Deze is breder dan center en loopt dus aan de rechterkant naar buiten.
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment