css控制一个div在其父级的div垂直居中显示

来源:互联网 发布:网络上的占豪是谁啊 编辑:程序博客网 时间:2024/05/16 17:34

父的div中有一个子的div,让子div在父div的居中显示。
1、方法一
这方法最好使,我常用的方法

.parent {          width:800px;          height:500px;          border:2px solid #000;          position:relative;} .child {            width:200px;            height:200px;            margin: auto;              position: absolute;              top: 0; left: 0; bottom: 0; right: 0;             background-color: red;}

2、方法二
这个方法vertical-align:middle不是太好用,不好控制

.parent {            width:800px;            height:500px;            border:2px solid #000;            display:table-cell;            vertical-align:middle;            text-align: center;        }        .child {            width:200px;            height:200px;            display:inline-block;            background-color: red;        }

3、方法三

.parent {            width:800px;            height:500px;            border:2px solid #000;            display:flex;            justify-content:center;            align-items:center;        }        .child {            width:200px;            height:200px;            background-color: red;        }

3、方法四

.parent {            width:800px;            height:500px;            border:2px solid #000;            position:relative;        }        .child {            width:300px;            height:200px;            margin:auto;            position:absolute;/*设定水平和垂直偏移父元素的50%,再根据实际长度将子元素上左挪回一半大小*/            left:50%;            top:50%;            margin-left: -150px;            margin-top:-100px;            background-color: red;        }

更多信iOS开发信息 请以关注洲洲哥 的微信公众号,不定期有干货推送:

这里写图片描述

1 0
原创粉丝点击