创建Bootstrap 界面,屏幕中心有两个按钮
时间: 2023-08-16 09:06:06 浏览: 97
bootstrap界面
好的,我可以为您提供一些示例代码。以下是一个简单的Bootstrap界面,其中有两个居中的按钮:
```html
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Buttons</title>
<!-- 引入Bootstrap样式文件 -->
<link rel="stylesheet" href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.3/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid d-flex justify-content-center align-items-center" style="height: 100vh;">
<div class="row">
<div class="col-md-12">
<button class="btn btn-primary mr-3">Button 1</button>
<button class="btn btn-secondary">Button 2</button>
</div>
</div>
</div>
<!-- 引入Bootstrap JavaScript文件 -->
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.3/js/bootstrap.min.js"></script>
</body>
</html>
```
这个示例中,我们使用了Bootstrap的网格系统来将居中的按钮放置在页面中心。我们还使用了`justify-content-center`和`align-items-center`类来使其水平和垂直居中。按钮分别使用`btn-primary`和`btn-secondary`类来设置它们的颜色。
阅读全文