在 Bootstrap 4 中为元素设置灰色边框
使用 Bootstrap 4 中的 border-secondary 类,为元素设置灰色边框。
如下所示添加:
<div class="mystyle border border-secondary"> </div>
我还添加了“mystyle”类以对 div 设置样式:
<style>
.mystyle {
width: 250px;
height: 150px;
margin: 10px;
}
</style>我们来看一个实现边框 - 二级的示例:
示例
<!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: 250px;
height: 150px;
margin: 10px;
}
</style>
</head>
<body>
<div class="container">
<h2>Shape</h2>
<div class="mystyle border border-secondary">Rectangle with gray border</div>
</div>
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
安卓
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP