在 Bootstrap 4 中以垂直方向顯示彈性專案
要垂直顯示彈性專案,在 Bootstrap 4 中使用 flex-column 類−
<div class="d-flex flex-column mb-3">
現在設定其中的 flex-items −
<div class="d-flex flex-column mb-3"> <div class="p-2 bg-info">One</div> <div class="p-2 bg-warning">Two</div> <div class="p-2 bg-info">Three</div> <div class="p-2 bg-danger">Four</div> <div class="p-2 bg-info">Five</div> </div>
讓我們看一個示例來學習如何學習如何顯示 flex-column 類 −
示例
<!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> </head> <body> <div class="container mt-3"> <h2>Example of Flex Column</h2> <p>Stating the usage of flex column class:</p> <div class="d-flex flex-column mb-3"> <div class="p-2 bg-info">One</div> <div class="p-2 bg-warning">Two</div> <div class="p-2 bg-info">Three</div> <div class="p-2 bg-danger">Four</div> <div class="p-2 bg-info">Five</div> </div> </div> </body> </html>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
JavaScript
PHP