我目前正在制作一个简单的响应式模板,但不幸的是,当我"收缩"检查按钮的页面不适合流程。
这是我的代码:
.w3container {
max-width: 100%;
position: relative;
left: 750px;
font-size: 22px;
color: white;
font-family: 'Comfortaa', cursive;
margin: 0;
}

<div class="w3container">
<button class="btn1">btn1</button>
<button class="btn2">btn2</button>
<button class="btn3">btn3</button>
</div>
&#13;
答案 0 :(得分:0)
button {
display: inline-block;
box-sizing: border-box;
max-width: 100%;
}
或者如果你想要按钮全宽
button {
display: block;
box-sizing: border-box;
max-width: 100%;
}