Created
March 13, 2014 13:44
-
-
Save echosa/9528745 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 type="text/css"> | |
.container { | |
width: 100%; | |
border: 1px solid black; | |
background: #CCCCCC; | |
} | |
.theFloat { | |
float: left; | |
border: 1px solid red; | |
position: relative; | |
} | |
.fixTheFloat{ | |
clear: both; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
This container lacks the fix. | |
<div class="theFloat"> | |
This float is not enclosed by the surrounding div <br />container. | |
</div> | |
<div class="fixTheFloat" /> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment