在 Bootstrap 中移除元素的右邊界


移除元素的右邊界;使用 border-right-0 類。

若要移除邊框 -

<div class="mystyle border border-right-0">
  Rectangle is not having the right border.
</div>

可以嘗試執行以下程式碼來實現 border-right-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-right-0">Rectangle is not having the right border.</div>
    </div>
  </body>
</html>

更新時間:2020 年 6 月 17 日

103 次瀏覽

開啟您的 職業

完成課程即可獲得認證

開始學習
廣告