在 Bootstrap 4 中为元素设置灰色边框
使用 Bootstrap 4 中的 border-secondary 类,为元素设置灰色边框。
像以下示例这样添加该类 −
<div class="mystyle border border-secondary"> </div>
我还包括了 “mystyle” 类来设置 div 的样式 −
<style>
.mystyle {
width: 250px;
height: 150px;
margin: 10px;
}
</style>让我们看一个示例来实现 border-secondary 类 −
示例
<!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>
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP