gpt4 book ai didi

html - 将任何 div 保持在水平中间

转载 作者:太空宇宙 更新时间:2023-11-04 13:18:04 30 4
gpt4 key购买 nike

我有两个固定大小的 div,即使我重新调整屏幕大小,我也想让它们水平居中。即使我为低屏幕删除了一个 div,我也想将另一个放在中间。

这是我试过的代码... Fiddle

<div id="wrapper1">
<div id="one">1</div>
<div id="two">2</div>
</div>

CSS 从这里...

#wrapper1 {
width: 100%;
height: 90px;
margin: 0 auto;
}

#wrapper1 #one {
width: 200px;
height: 90px;
background: white;
display: inline-block;
box-shadow: 0 0 5px #AAAAAA;
}
#wrapper1 #two {
width: 100px;
height: 90px;
margin-left: 10px;
background: white;
display: inline-block;
box-shadow: 0 0 5px #AAAAAA;
}


@media screen and (max-width: 400px) {

#wrapper1 #two {
display: none;
}

}

最佳答案

Demo

text-align:center 到您的父 div 将使所有子 div 都位于中心。

CSS

#wrapper1 {
width: 100%;
height: 90px;
text-align: center; /* add just this to make child elements center in parent div */
}

关于html - 将任何 div 保持在水平中间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24277586/

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