gpt4 book ai didi

html - 如何使按钮宽度在媒体查询中起作用

转载 作者:太空宇宙 更新时间:2023-11-04 06:23:35 26 4
gpt4 key购买 nike

我的代码中有 6 个按钮,我希望它们的宽度都相同,并且只有第一个按钮有效。我尝试使用 width:auto important; 但我仍然无法覆盖其余 5 个按钮。请帮我。谢谢。

#subpage .btn {
float: left;
margin: 1% 1%;
padding: 15px;
text-align: center;
border-radius: 5px;
background: #222;
}

#subpage .btn a {
display: block;
padding: 15px;
color: #FFF;
text-decoration: none;
}

#subpage .b1 {
width: 60%;
clear: both;
float: none;
margin: 0 auto;
}

#subpage .b2 {
width: 45%;
}

#subpage .b3 {
width: 28.3%;
}

@media screen and (max-width: 700px) {
#subpage .btn {
float: none;
margin: 1% 7% !important;
padding: 0 !important;
}
#subpage .b1,
#subpage .b2,
#subpage .b3 {
width: auto !important;
}
}
<div class="btn b1"><a href="../sample.html">サンプルボタン</a></div>
<div class="btn b2"><a href="../sample.html">サンプルボタン</a></div>
<div class="btn b2"><a href="../sample.html">サンプルボタン</a></div>
<div class="btn b3"><a href="../sample.html">サンプルボタン</a></div>
<div class="btn b3"><a href="../sample.html">サンプルボタン</a></div>
<div class="btn b3"><a href="../sample.html">サンプルボタン</a></div>

预期结果

enter image description here

我的

enter image description here

最佳答案

我找到了我的问题的解决方案。我将 width:auto !important; 放在 .btn 中。并添加了 clear:both; float :无; margin:0 auto;.b2, .b3 而不是 width:auto !important; 我将它的大小调整为 width:86% !重要;

#subpage .btn{
float: none;
margin: 2px 7% !important;
padding: 0 !important;
width: auto !important;
}

#subpage .b2,
#subpage .b3{
clear: both;
float: none;
margin: 0 auto;
width: 86% !important;
}

关于html - 如何使按钮宽度在媒体查询中起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55272933/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com