Bootstrap 4 .float-right 類


在 Bootstrap 中使用 float-right 類將元素放置於右側。

預設文字對齊方式是靠左的,使用 float-right 類可將文字對齊到右側,如下面的程式碼片段所示:

<div class="float-right">
  This text is on the right.
</div>

也可以將它用於任何其他元素,例如 <h1>、<p> 等:

<p class="float-right">
  On the right
</p>

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

示例

線上演示

<!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>Example</h2>
    <div class="clearfix">
      <div class="float-right">This text is on the right.</div><br>
      <div class="float-left">This text is on the left.</div><br>
      <div class="float-none">Float Removed</div><br>
    </div>
  </div>

</body>
</html>

更新於:17-6-2020

11K+ 瀏覽

開啟你的職業生涯

完成課程以獲得認證

立即開始
廣告
© . All rights reserved.