DOCTYPE html> 다단 배치 /* float 요소를 배치할 수 있는 전용 공간 - ::before 는 공간 시작 지점을 의미하는 가상 선택자 - ::after 는 공간 마지막 지점을 의미하는 가상 선택자 */ .float-container::after { content:""; display: block; /* width:100%도 가능 */ clear: both; } .float-container > .float-left { float: left; } .float-container > .float-right { float: right; } .float-container > .col-2, .float-container > .col-3, .float-container > .col-4, .float-c..