Bootstrap-Clearfix


本章讨论辅助类的clearfix 功能。Bootstrap 中的clearfix 功能用于清除容器内的浮动元素。当容器内的元素浮动时,容器的高度有时会折叠,从而导致布局问题。


以下是如何在 Bootstrap 中使用.clearfix类的示例:

例子

下面的例子展示了clearfix的用法。如果没有clearfix,包裹div将不会跨越按钮,这会导致布局损坏。

您可以使用“编辑并运行”选项编辑并尝试运行此代码。

<!DOCTYPE html>
<html lang="en">
    <head>
       <title>Bootstrap - Helper - Clearfix</title>
       <meta charset="UTF-8">
       <meta http-equiv="X-UA-Compatible" content="IE=edge">
       <meta name="viewport" content="width=device-width, initial-scale=1.0">
       <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
       <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
    </head>
    <body>
        <h4>Clearfix example</h4><br>
          <div class="bg-success clearfix">
          <button type="button" class="btn btn-secondary float-start">Button floated left</button>
          <button type="button" class="btn btn-secondary float-end">Button floated right</button>
          </div>
    </body>
</html>