Bootstrap 4 中的 border-top-0 類


在 Bootstrap 4 中使用 border-top-0 類移除邊框。

設定 border-top-0 類 −

<div class="mystyle border border-top-0">
  Rectangle is missing the TOP border.
</div>

讓我們看一個實現 border-top-0 類的例子 −

例子

即時演示

<!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>
    <style>
    .mystyle {
      width: 350px;
      height: 170px;
      margin: 10px;
    }
    </style>
  </head>
<body>
  <div class="container">
    <h2>Heading Two</h2>
    <div class="mystyle border border-top-0">
      Rectangle is missing the TOP border.
    </div>
  </div>
</body>
</html>

更新時間: 18-6-2020

251 個瀏覽

開啟你的 職業

透過完成課程獲得認證

開始學習
廣告