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

css篇之absolute絕對定位元素居中技巧

高洛峰
發布: 2017-02-13 14:27:05
原創
1820 人瀏覽過

一般地,居中絕對定位元素,left:50%;top:50%;再margin負值或透過transform也可達到效果。
今天發現另一個技巧,利用,top,left,right,bottom取值0,再magin:auto,即可實現居中。
原因:

<div class=&#39;box>
    <div class=&#39;jz&#39;></div>
</div>
登入後複製
div.box{
   position: relative;
   height: 300px;
   background: #989eaa;
}
div.fz{
   width: 100px;
   height: 100px;
   background: #499682;
   position: absolute;
   top:0;
   left: 0;
   right: 0;
   bottom: 0;
   margin:auto;
}
登入後複製

更多css篇之absolute絕對定位元素居中技巧相關文章請關注PHP中文網!

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