在 Bootstrap 4 中移除一个元素的顶部边框
使用 border-top-0 类来从一个元素移除顶部边框。
设置这个类就像我们给元素添加其它类一样 −
<div class="mystyle border border-top-0"> Top border is missing </div>
上面,我取 <div> 作为我们的元素。还添加了另一个类“mystyle”,用于给我们的 div 加样式 −
.mystyle { width: 350px; height: 170px; margin: 10px; }
你可以尝试运行以下代码,以便在 Bootstrap 4 中使用 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>Rectangle</h2> <div class="mystyle border border-top-0">Top border is missing</div> </div> </body> </html>
广告