Bootstrap 4 .float-left 類


在 Bootstrap 中使用 float-left 類將元素浮動到左側。

將其放置在左側 -

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

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

你可以嘗試執行以下程式碼來實現 float-left 類 -

示例

即時演示

<!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>Text</h2>
  <p>The following text is on the left:</p>
  <div class="clearfix">
    <p class="float-left">I am on the left.</p>
  </div>
</div>

</body>
</html>

更新時間: 2020-06-18

2K+ 瀏覽量

助力你的 職業

完成教程後獲得認證

開始
廣告
© . All rights reserved.