主頁(yè) > 知識(shí)庫(kù) > HTML對(duì)于元素水平垂直居中的探討

HTML對(duì)于元素水平垂直居中的探討

熱門標(biāo)簽:默納克系統(tǒng)外呼顯示inns 400電話是在哪里申請(qǐng) 朝陽(yáng)自動(dòng)外呼系統(tǒng) 商丘電話自動(dòng)外呼系統(tǒng)怎么收費(fèi) 昌邑外呼系統(tǒng) 400電話辦理尚景 周口導(dǎo)航地圖標(biāo)注 東莞人工外呼系統(tǒng)多少錢 地圖標(biāo)注地點(diǎn)下載

我們?cè)谠O(shè)計(jì)頁(yè)面的時(shí)候,經(jīng)常要把DIV居中顯示,而且是相對(duì)頁(yè)面窗口水平和垂直方向居中顯示,如讓登錄窗口居中顯示。

到現(xiàn)在為止,探討了很多種方法。

HTML:

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <body>  
  2.     <div class="maxbox">  
  3.         <div class="minbox align-center"></div>  
  4.     </div>  
  5. </body>  
  6.   

效果圖(下面幾種方法效果圖一樣):

第一種: CSS絕對(duì)定位

主要利用絕對(duì)定位,再用margin調(diào)整到中間位置。

父元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .maxbox{   
  2.     positionrelative;   
  3.     width500px;   
  4.     height500px;   
  5.     margin5px;   
  6.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  7. }   
  8.   

子元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .minbox{   
  2.     width200px;   
  3.     height200px;   
  4.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  5. }  

水平垂直居中對(duì)齊:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .align-center{   
  2.     positionabsolute;   
  3.     left: 50%;   
  4.     top: 50%;   
  5.     margin-left: -100px;   /*width/-2*/  
  6.     margin-top: -100px;    /*height/-2*/  
  7. }   

第二種: CSS絕對(duì)定位 + Javascript/JQuery

主要利用絕對(duì)定位,再用Javascript/JQuery調(diào)整到中間位置。相比第一種方法,此方法提高了class的靈活性。

父元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .maxbox{   
  2.     positionrelative;   
  3.     width500px;   
  4.     height500px;   
  5.     margin5px;   
  6.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  7. }   
  8.   

子元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .minbox{   
  2.     width200px;   
  3.     height200px;   
  4.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  5. }  

水平垂直居中對(duì)齊:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .align-center{   
  2.     positionabsolute;   
  3.     left: 50%;   
  4.     top: 50%;   
  5. }   
  6.   

JQuery:

JavaScript Code復(fù)制內(nèi)容到剪貼板
  1. $(function(){   
  2.     $(".align-center").css(   
  3.         {   
  4.             "margin-left": ($(".align-center").width()/-2),   
  5.             "margin-top": ($(".align-center").height()/-2)   
  6.         }   
  7.     );   
  8. });   
  9.   

第三種: CSS3絕對(duì)定位 + 位移

使用絕對(duì)定位與CSS3的 transform: translate同樣也可以達(dá)到效果。

父元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .maxbox{   
  2.     positionrelative;   
  3.     width500px;   
  4.     height500px;   
  5.     margin5px;   
  6.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  7. }   
  8.   

子元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .minbox{   
  2.     width200px;   
  3.     height200px;   
  4.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  5. }   
  6.   

水平垂直居中對(duì)齊:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .align-center{   
  2.     positionabsolute;   
  3.     top: 50%;   
  4.     left: 50%;   
  5.     -webkit-transform: translate(-50%, -50%);   
  6.        -moz-transform: translate(-50%, -50%);   
  7.             transform: translate(-50%, -50%);        /*向左向上位移*/  
  8. }   
  9.   

第四種: Flexbox: [伸縮布局盒模型]

要讓元素水平垂直,對(duì)于Flexbox模型來(lái)說(shuō)太容易了。

這里得改變一下HTML:

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. <div class="maxbox align-center">  
  2.     <div class="minbox"></div>  
  3. </div>  
  4.   

父元素:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .maxbox{   
  2.     positionrelative;   
  3.     width500px;   
  4.     height500px;   
  5.     margin5px;   
  6.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  7. }   
  8.   

子元素:

C# Code復(fù)制內(nèi)容到剪貼板
  1. .minbox{   
  2.     width: 200px;   
  3.     height: 200px;   
  4.     box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);   
  5. }  

水平垂直居中對(duì)齊:

CSS Code復(fù)制內(nèi)容到剪貼板
  1. .align-center{   
  2.     display: flex;   
  3.     display: -webkit-flex;       /*兼容問(wèn)題*/  
  4.     justify-contentcenter;   
  5.     align-items: center;    
  6. }   

幾種方法的比較:

第一種CSS絕對(duì)定位margin調(diào)整,兼容性很好但是欠缺靈活性。如果有很多box里需要水平垂直居中,因其width,height不同而需要寫不同的 .align-center 。
第二種使用腳本語(yǔ)言,兼容性很好且彌補(bǔ)了第一種的缺點(diǎn)。不因width,height的改變而影響水平垂直居中的效果。
第三種使用CSS3的一些新的屬性,兼容IE10, Chrome, Firefox, 和 Opera。兼容性不太很好,不因width,height的改變而影響水平垂直居中的效果。
使用Flexbox模型,兼容Firefox、Opera 和 Chrome,IE全軍覆沒(méi)。也是不因width,height的改變而影響水平垂直居中的效果。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助。

標(biāo)簽:福建 阿拉善盟 沈陽(yáng) 健身房 銅陵 揭陽(yáng) 湖南 那曲

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML對(duì)于元素水平垂直居中的探討》,本文關(guān)鍵詞  HTML,對(duì)于,元素,水平,垂直,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML對(duì)于元素水平垂直居中的探討》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于HTML對(duì)于元素水平垂直居中的探討的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章