在 Bootstrap 中形成圓形元素
若要將元素設為圓形,請在 Bootstrap 中使用 .rounded-circle 類。
實現起來很容易 -
<div class="test rounded-circle"></div>
我們來看一個在 Bootstrap 中建立圓形的示例 -
示例
<!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>
.test {
width: 300px;
height: 300px;
background-color: orange;
}
</style>
</head>
<body>
<div class="container">
<h2>Circle</h2>
<p>We have a circle below:</p>
<div class="test rounded-circle"></div>
</div>
</body>
</html>
廣告
資料結構
計算機網路
關係型資料庫管理系統
作業系統
Java
iOS
超文字標記語言
層疊樣式表
安卓
Python
C 程式語言
C++
C#
MongoDB
MySQL
JavaScript
PHP