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

开启你的 职业

通过完成课程获得认证

开始
广告