使用 Bootstrap 4 创建 Flexbox 容器
在 Bootstrap 中使用 d-flex 类创建 flexbox 容器。
在此,我设置了两个 flex 项 −
<div class="d-flex p-3 bg-info text-white"> <div class="p-2 bg-primary">One</div> <div class="p-2 bg-warning">Two</div> </div>
在上面,我使用了 d-flex 类来设置容器。该容器有两个 flex 项,分别使用 bg-primary 和 bg-warning 类进行样式设置。
让我们看一个完整的示例 −
示例
<!DOCTYPE html> <html> <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>Understanding Flex</h2> <div class="d-flex p-3 bg-info text-white"> <div class="p-2 bg-primary">One</div> <div class="p-2 bg-warning">Two</div> </div> </div> </body> </html>
广告