बूटस्ट्रैप में किसी भी तत्व के फ्लोट को साफ करने के लिए .clearfix वर्ग का उपयोग करें।
उदाहरण
आप clearfix वर्ग को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं:
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "clearfix" style = "background: orange;border: 1px solid #000; padding: 10px;"> <div class = "pull-left" style = "background:#58D3F7;"> Quick Float to left </div> <div class = "pull-right" style = "background: #DA81F5;"> Quick Float to right </div> </div> </body> </html>