码迷,mamicode.com
首页 > 其他好文 > 详细

元素居中显示

时间:2015-10-31 15:43:42      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

1.水平居中

.className{
    margin:0 auto;
    width:200px;
    height:200px;
}

 

2.垂直水平居中

 

.className{
    width:300px;
    height:200px;
    position:absolute;
    left:50%;
    top:50%;
    margin:-100px 0 0 -150px;
}

3.jquery实现水平垂直居中

$(window).resize(function(){

    $(‘.className‘).css({
        position:‘absolute‘,
        left: ($(window).width() - $(‘.className‘).outerWidth())/2,
        top: ($(window).height() - $(‘.className‘).outerHeight())/2
    });

});

// To initially run the function:
$(window).resize();

 

元素居中显示

标签:

原文地址:http://www.cnblogs.com/cyhj/p/4925585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!