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 次浏览

开启您的职业生涯

完成课程获得认证

开始
广告