margin collapse
<body>
<div class="main-background">
<h4 class="main-title">Buy Our Shoes!</h4>
</div>
</body>
.main-background {
width: 100%;
height: 500px;
background-image: url(../img/shoes.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 1px;
}
.main-title {
font-size: 64px;
color: #eee;
margin-top: 30px;
}
- 이미지 안에 h4 텍스트를 넣고 해당 class에(여기서는 main-title) margin-top 조정 시 margin collapse bug 때문에 이미지와 텍스트가 모두 같은 margin을 갖게 된다
- margin collapse는 두 요소의 margin boundary가 맞닿으면 margin 값이 같이 적용되는 bug이다
- margin collapse를 방지하기 위해서는 margin boundary 사이에 작은 여백을 주는 것이 좋다(여기서는 main-background에 1px padding을 적용)