css居中

作者: 我叫琪琪呀 | 来源:发表于2021-11-10 14:15 被阅读0次

1:margin: 0 auto;水平居中

2:html, body { 

         width: 100%; 

         height: 100%;

         margin: 0;

         padding: 0;

}       

 .content {           

         width: 300px;            

        height: 300px;            

        background: orange;            

        margin: 0 auto;/*水平居中*/

}

3:img {

          display: block;

          margin-left: auto;

          margin-right: auto;

}

4:.parent{

        position: relative;

}

.child{

        position: absolute;

        top:50%;

        height:100px;

        margin-top: -50px;/* 如果没有使用: border-box; 的盒子模型则需要设置这个 */

}

相关文章

网友评论

      本文标题:css居中

      本文链接:https://www.haomeiwen.com/subject/twobzltx.html