Created
February 26, 2020 03:13
-
-
Save baeharam/79832bd7fcc9340bc3c6e9c77c363339 to your computer and use it in GitHub Desktop.
BFC - Solve Margin Collapsing
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
<div class="bfc"> | |
<p>element</p> | |
<p>element</p> | |
<div class="new-bfc"> | |
<p>element</p> | |
</div> | |
</div> |
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
div { | |
background-color: blue; | |
} | |
p { | |
margin: 10px 0; | |
background-color: green; | |
} | |
.bfc { | |
overflow: hidden; | |
} | |
.new-bfc { | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment