首頁 > web前端 > css教學 > 主體

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

高洛峰
發布: 2017-03-06 14:35:20
原創
1411 人瀏覽過

基礎: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中文網!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!