在 Bootstrap 中針對不同螢幕大小,圍繞對齊 flex 元素
若要在不同的螢幕尺寸中圍繞對齊彈性元素,請使用 justify-content-*-around 類。
您可以實現以下在小型和中型螢幕尺寸上可證明有效內容的結果 -

在 Bootstrap 中實現 justify-content-*-around 類 -
示例
<!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"> <p>Default</p> <div class="d-flex justify-content-around bg-warning mb-5"> <div class="p-2 bg-danger">ANS 1</div> <div class="p-2 bg-info">ANS 2</div> <div class="p-2 bg-secondary">ANS 3</div> </div> <p>Small Screen Size</p> <div class="d-flex justify-content-sm-around bg-warning mb-5"> <div class="p-2 bg-danger">ANS 1</div> <div class="p-2 bg-info">ANS 2</div> <div class="p-2 bg-secondary">ANS 3</div> </div> <p>Medium Screen Size</p> <div class="d-flex justify-content-md-around bg-warning mb-5"> <div class="p-2 bg-danger">ANS 1</div> <div class="p-2 bg-info">ANS 2</div> <div class="p-2 bg-secondary">ANS 3</div> </div> <p>Large Screen Size</p> <div class="d-flex justify-content-lg-around bg-warning mb-5"> <div class="p-2 bg-danger">ANS 1</div> <div class="p-2 bg-info">ANS 2</div> <div class="p-2 bg-secondary">ANS 3</div> </div> </div> </body> </html>
廣告
資料結構
網路連線
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP