使用 Bootstrap 在不同尺寸的螢幕上向右浮動元素


在 Bootstrap 中,使用 float-*-right 類的目的是將元素浮到右側。不同的螢幕尺寸包括為小尺寸、中尺寸、大尺寸和超大尺寸設定的 float。

讓我們看看如何在小螢幕和中螢幕尺寸上浮動元素 −

小螢幕尺寸

<div class="float-sm-right">
  This text is on the right (on small screen).
</div>

中螢幕尺寸

<div class="float-md-right">
  This text is on the right (on medium screen).
</div>

讓我們看看如何在不同尺寸的螢幕上向右放置元素 −

案例

線上演示

<!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-sm-right">This text is on the right (on small screen).</div><br>
      <div class="float-md-right">This text is on the right (on medium screen).</div><br>
      <div class="float-lg-right">This text is on the right (on large screen).</div><br>
      <div class="float-xl-right">This text is on the right (on extra large screen).</div><br>
    </div>
  </div>

</body>
</html>

更新日期:2020 年 6 月 18 日

1000+ 瀏覽

開啟您的 事業

透過完成該課程獲得認證

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