Created
November 20, 2013 12:48
-
-
Save jieter/7562595 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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