在 Bootstrap 4 中使元素浮动到左侧


若要在 Bootstrap 中使元素浮动到左侧,请使用 float-left 类。

使用该类,将元素设置在左侧,如下所示 −

<p class="float-left">
  I am on the left.
</p>

在其他元素上进行设置,如 <h1>、<h2>、<div> 等 −

<h1 class="float-left">
  Heading is on the left.
</h1>

你可以尝试运行以下代码,将元素放在左侧 −

示例

现场演示

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</head>

<body>
  <div class="container">
    <h2>Demo</h2>
    <div class="clearfix">
      <p class="float-left">I am on the left.</p><br>
      <p class="float-right">I am on the right.</p><br>
      <p class="float-left">I am on the left.</p><br>
      <p class="float-right">I am on the right.</p>
    </div>
  </div>

</body>
</html>

更新日期:18-06-2020

653 浏览次数

开启你的 职业生涯

完成课程认证

开始学习
广告