在 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>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP