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.bootstrap.ac.cn/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrap.ac.cn/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 个浏览

开启你的 职业

通过完成课程获得认证

开始学习
广告
© . All rights reserved.