Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

จะล้างทุ่นลอยด้วยแฮ็ค clearfix ด้วย CSS ได้อย่างไร


ในการเคลียร์ floats ด้วย clearfix hack โดยใช้ CSS โค้ดจะเป็นดังนี้ -

ตัวอย่าง

<!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>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

จะล้างทุ่นลอยด้วยแฮ็ค clearfix ด้วย CSS ได้อย่างไร