想做两个按钮并列排列且居中怎么写
时间: 2023-07-31 11:07:57 浏览: 714
你可以使用以下 CSS 代码:
```
.container {
display: flex;
justify-content: center;
}
.button {
margin: 0 10px; /* 调整按钮之间的间距 */
}
```
然后在 HTML 中嵌套两个按钮:
```
<div class="container">
<button class="button">按钮1</button>
<button class="button">按钮2</button>
</div>
```
这样就可以实现两个按钮并列排列且居中的效果。
阅读全文