我#box
在一个页面上有一个 div ( ),它绝对位于窗口顶部和底部的百分比。自然,当窗口尺寸改变时,这将调整大小,
这个 div 里面的内容可以是从几行到几段的任何内容。我希望此内容始终垂直居中,从不超过#box
' 高度 - 必要时主要内容溢出。
HTML:
<div id="box">
<div id="content">
<h1>HEADING</h1>
<div id="left">
<p>
// Lorem ipsum etc...
</p>
</div>
</div>
</div>
CSS:
#box{
position:absolute;
top:15%; bottom:15%;
background:white;
left:50%;
}
#content{
position:absolute;
top:50%;
overflow:auto;
background:lightgrey;
}
jQuery(JavaScript):
function alignContent(){
// Position box
$box = $('#box');
$box.css({
'width' : $box.height() + 'px',
'margin-left' : '-' + $box.height()/2 + 'px'
});
// Position content
$content = $('#content');
console.log( $content.outerHeight() );
$content.css({
// Set maxheight smaller for aesthetic purposes
'max-height' : $box.height()-72 + 'px',
'margin-top' : '-' + ($content.outerHeight()/2) + 'px'
});
}
alignContent();
// Update when resized
$(window).resize(function(){
alignContent();
});
这种方法 - 我认为 - 非常简单并且大部分时间都有效。当内容对于页面加载而言太高时会出现问题#box
- 内容定位不正确(还要注意 console.log 返回错误的值)。调整大小会再次正确对齐所有内容。
当内容高于容器时,是什么导致它在页面加载时不正确地对齐 - 它是否易于修复?
编辑:请原谅我的英国倾向将其拼写为“中心”