gpt4 book ai didi

html - 在新行上对齐元素

转载 作者:太空宇宙 更新时间:2023-11-03 20:30:25 28 4
gpt4 key购买 nike

我想将我的按钮对齐到我的输入下方,我将它们都放在一个名为 card-group 的 div 中。我在两个元素上都有一个 width: auto;。我正在使用媒体查询使其适合移动设备,但无法正常工作。输入和按钮不会在彼此下方对齐。 Here是一个工作示例的 fiddle 。

HTML

<div class="card-zipcode">
<label>Postcode</label>
<div class="card-group">
<input type="text" class="input-zipcode">
<button class="btn-postnl" id="bekijken" type="submit">Bekijken</button>
</div>
</div>

CSS

.card-group {
display: flex;
justify-content: space-between;
}

.card-group input {
width: auto;
}

.btn-postnl {
display: inline-block;
position: relative;
height: 40px;
width: auto;
margin: 0;
padding: 0 20px;
vertical-align: top;
border: 1px solid rgba(0, 0, 0, 0);
background-color: #ED8C00;
-webkit-appearance: none;
outline: 0;
line-height: 38px;
font-size: 1em;
font-weight: 300;
color: #FFF;
cursor: pointer;
-webkit-transition: all .1s ease-out 0s;
transition: all .1s ease-out 0s;
border-radius: 3px;
}

@media only screen and (max-width: 400px) {
body {
background-color: #fff;
}

.card {
box-shadow: none;
margin-top: -1px;
}

.card-group {

}
}

最佳答案

将此添加到您的媒体查询中:

.card-group {
flex-direction: column;
}

它将改变 flex 行为并使 flex-ed 元素对齐为一列而不是一行。

JSFiddle

关于html - 在新行上对齐元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43377491/

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