如何使用 Bootstrap 4 .float-*-right 類


如果你想讓元素在不同的螢幕尺寸下浮動在右側,那麼請使用 float-*-right 類,即

對於小型、中型、大型和超大型裝置,如下:−

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

561 次瀏覽

啟動你的 事業

透過完成課程獲得認證

開始學習
廣告
© . All rights reserved.