在 Bootstrap 4 中垂直展示 Flex 項
在 Bootstrap 4 中垂直顯示 Flex 項,請使用 flex-column 類 −
<div class="d-flex flex-column mb-3">
接下來,在其中設定 Flex 項 −
<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>
廣告
資料結構
網路
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP