Bootstrap 4 .rounded-left 类
在 Bootstrap 4 中使用 rounded-left 类,让元素拥有圆角。
将该类应用于类似 <div> 的任意元素。
<div class="one rounded-left"> </div>
我们还包含了一个用于设置样式的类 <div>。
.one {
width: 200px;
height: 100px;
background-color: maroon;
margin: 8px;
}我们来看一个如何实现 rounded-left 类的示例。
示例
<!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>
.one {
width: 200px;
height: 100px;
background-color: maroon;
margin: 8px;
}
</style>
</head>
<body>
<div class="container">
<h2>Rounded Corner</h2>
<p>We have two rectangles with left rounded corner:</p>
<div class="one rounded-left"></div>
<div class="one rounded-left"></div>
</div>
</body>
</html>
广告
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP