CSS를 사용하여 clearfix 핵으로 float를 지우려면 코드는 다음과 같습니다 -
예시
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } div { border: 3px solid rgb(21, 0, 114); padding: 5px; } img { float: right; } .clearfix { overflow: auto; } </style> </head> <body> <h1>Clearfix hack example</h1> <h2>Without Clearfix</h2> <div> <img src="https://i.picsum.photos/id/17/300/300.jpg" width="100" height="100"/> Sample Text </div> <h2 style="clear:right">With Clearfix</h2> <div class="clearfix"> <img src="https://i.picsum.photos/id/17/300/300.jpg" width="100" height="100"/> Sample Text </div> </body> </html>
출력
위의 코드는 다음 출력을 생성합니다 -