首頁  >  文章  >  web前端  >  div在另一個div裡垂直居中的範例介紹

div在另一個div裡垂直居中的範例介紹

高洛峰
高洛峰原創
2017-03-06 14:35:201420瀏覽

基礎:div在另一個div裡垂直居中

#方法一:

<span style="text-decoration: none;">.parent {<br>            width:800px;<br>            height:500px;<br>            border:2px solid #000;<br>            position:relative;<br> }<br> .child {<br>             width:200px;<br>             height:200px;<br>             margin: auto;  <br>             position: absolute;  <br>             top: 0; left: 0; bottom: 0; right: 0; <br>             background-color: red;<br>}<br></span>

方法二:

<span style="text-decoration: none;">.parent {<br>             width:800px;<br>             height:500px;<br>             border:2px solid #000;<br>             display:table-cell;<br>             vertical-align:middle;<br>             text-align: center;<br>         }<br>  .child {<br>             width:200px;<br>             height:200px;<br>             display:inline-block;<br>             background-color: red;<br>         }<br></span>

方法三:

<span style="text-decoration: none;">.parent {<br>            width:800px;<br>            height:500px;<br>            border:2px solid #000;<br>            display:flex;<br>            justify-content:center;<br>           align-items:center;<br>        }<br> .child {<br>            width:200px;<br>            height:200px;<br>            background-color: red;<br>        }<br></span>

方法四:

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

更多div在另一個div裡垂直居中的範例介紹相關文章請關注PHP中文網!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn