我想将Obj“包装器”居中在页面中心(垂直意味着什么)jQuery:
$(document).ready(function(){
win_height = $(window).height();
doc_height = $('#wrapper').height();
$('#wrapper').css({'margin-top':(win_height/2)-(doc_height/2)});
});
HTML:
<div id="wrapper" style="width:100px;height:400px;margin: 0 auto;">
</div>
它不起作用,怎么了?谢谢 !