了解如何使用 CSS 创建"button group"。
将一系列按钮组合在一个按钮组中的一行上:
<div class="btn-group">
<button>Apple</button>
<button>Samsung</button>
<button>Sony</button>
</div>
.btn-group button {
background-color: #04AA6D; /* Green background */
border: 1px solid green; /* Green border */
color: white; /* White text */
padding: 10px 24px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
float: left; /* Float the buttons side by side */
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
}
/* Clear floats (clearfix hack) */
.btn-group:after {
content: "";
clear: both;
display: table;
}
/* Add a background color on hover */
.btn-group button:hover {
background-color: #3e8e41;
}
亲自试一试 »
<!-- Three buttons in a group -->
<div class="btn-group" style="width:100%">
<button style="width:33.3%">Apple</button>
<button style="width:33.3%">Samsung</button>
<button style="width:33.3%">Sony</button>
</div>
<!-- Four buttons in a group -->
<div class="btn-group" style="width:100%">
<button style="width:25%">Apple</button>
<button style="width:25%">Samsung</button>
<button style="width:25%">Sony</button>
<button style="width:25%">HTC</button>
</div>
亲自试一试 »
提示:去我们的CSS 按钮教程了解有关如何设置按钮样式的更多信息。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!