<div class="container">
  <div class="float">
    <img src="https://picsum.photos/100/100/?image=1" />
  </div>
  <p>bfc를 형성하지 않은 경우, container가 float 요소를 포함하지 않고, float 요소가 그 위로 뜨게 됩니다. </p>
</div>

<div class="container bfc">
  <div class="float">
    <img src="https://picsum.photos/100/100/?image=1" />
  </div>
  <p class="bfc2">float 박스의 형제 박스에 bfc를 형성하게 되면, float 박스와 형제 박스는 서로의 영역을 침범하지 않습니다. 이때 이들의 부모 박스에도 bfc를 형성해줘야 부모 박스가 이들 박스를 포함할 수 있는 영역을 생성할 수 있습니다.</p>
</div>
* {
  margin: 0;
  padding: 0;
}

.container {
  background-color: orange;
  border: 5px solid green;
  margin-bottom: 150px;
}

.float {
  float: left;
}

.bfc {
  display: inline-block;
  width: 100%;
}

.bfc2 {
  display: inline-block;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.