gpt4 book ai didi

css - 绝对中心一个流体 div

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

美好的一天。

我知道如果你想让一个 div 绝对居中,你可以这样做:

<div id="parent">
<div id="child">blahblah</div>
</div>

CSS:

#parent{
width: 500px;
height: 500px;
position: absolute; /*(or relative)*/
top: 50%;
left: 50%;
margin-top: -250px;
margin-left: -250px;
text-align: center;
}

如果父 div 是流动的 div 怎么办?你如何绝对居中它的意思是:

#parent{
max-width: 500px;
max-height: 500px;
top: 50%; ->is this right?
left: 50%; -> is this right?
margin-top: ???;
margin-left: ???;
text-align: center;
}

最佳答案

由于 widthheight 是可变的,您需要使用 javascript 或 jQuery。只需在 head 标签中添加以下代码。 (下面的例子是在 javascript 中)

<script>
window.onresize = function(){
//To work even on resize
getToMiddle();
}
window.onload = function(){
getToMiddle();
}

function getToMiddle(){
var box = document.getElementById('parent');
var height = box.offsetHeight;
var width = box.offsetWidth;
box.style.top = -(height/2);
box.style.left = -(width/2);
}
</script>

你的 css 应该是这样的:

#parent{
max-width: 500px;
max-height: 500px;
background-color:green;
position:absolute;
top: 50%;
left: 50%;
/* width: 10%;
height: 10%; */
}

要测试,给 width: 10%;和高度:10%

Working Fiddle

关于css - 绝对中心一个流体 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15293008/

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