gpt4 book ai didi

css - 在较薄的掩码 div 中居中宽 div

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

我正在尝试将一个较宽的 div 置于一个较小的 div 的中心,并将其居中。这能做到吗?

我有这个:

HTML

<body>
<div id="full_container">
<div id="machine_mask">
<div id="machine_container">
<!---- SOME CONTENT HERE --->
</div>
</div>
<div class="machine_footer">
<img src="sprites/base_maquina.png" alt="panel de control" />
</div>
</div>
</body>

CSS

body {
margin :0;
}
div#full_container {
width: 100%;
height: 100%;
background: #805080;
}
div#machine_mask {
margin-top: 30px;
width: 100%;
display: inline-block;
height: 600px;
background: #805080;
position: relative;
overflow: hidden;
}
div#machine_container {
width: 1230px;
height: 500px;
background: #805080;
position: relative;
margin-left: auto;
margin-right: auto;
overflow: hidden;
}

当窗口宽度大于 1230px 时,它会居中,但是当窗口较小时我真的需要它居中...

有没有办法做到这一点? (我正在考虑使用 jQuery 并重新定位它,但我真的更喜欢在 css 中这样做)

非常感谢!

最佳答案

您可以使用绝对定位 hack。

div#machine_container {
width: 1230px;
height: 500px;
background: #805080;
position: absolute;
left: 50%;
margin-left: -615px; //half of 1230px
overflow: hidden;
}

关于css - 在较薄的掩码 div 中居中宽 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17870356/

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