关于如何居中div的问题
当div具有固定宽度(y px)时,我只使用左:50%和margin-left:-y / 2 px;
但是我如何将宽度为100%且固定最大宽度的div居中?即。
{
position: absolute;
margin: auto;
max-width: 1750px;
height: 100%;
width: 100%;
}
答案 0 :(得分:1)
尝试使用此jQuery创建页面的div中心:
<script>
jQuery.fn.vh_center = function (absolute) {
return this.each(function () {
var t = jQuery(this);
t.css({
position: absolute ? 'absolute' : 'fixed',
left: '50%',
top: '50%',
}).css({
marginLeft: '-' + (t.outerWidth() / 2) + 'px',
marginTop: '-' + (t.outerHeight() / 2) + 'px'
});
if (absolute) {
t.css({
marginTop: parseInt(t.css('marginTop'), 10) + jQuery(window).scrollTop(),
marginLeft: parseInt(t.css('marginLeft'), 10) + jQuery(window).scrollLeft()
});
}
});
};
$(document).ready(function(){
$('#Your_div').vh_center();
});
</script>