CSS实现垂直水平居中

Posted 熊大大大大大大大大

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS实现垂直水平居中相关的知识,希望对你有一定的参考价值。

html结构:

<div class="wrapper">
    <div class="content"></div>
 </div>

CSS代码:

 .wrapper{
            position:relative;
            height:400px;
            width:100%;
            background-color: antiquewhite;
        }
        .content{
            background-color:#6699FF;
            width:200px;
            height:200px;
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top:-100px ;
            margin-left: -100px;/*不添加下面两行的话,只能实现元素左上角在垂直水平中心点上;另外,这个值是内容块的高度和宽度的一半*/
        }

  

以上是关于CSS实现垂直水平居中的主要内容,如果未能解决你的问题,请参考以下文章

CSS代码片段

CSS代码片段

css 实现DIV水平垂直居中于屏幕

CSS实现垂直水平居中

CSS水平居中的9种方法

HTML CSS中如何实现DIV中的图片水平垂直居中对齐