我們?cè)谠O(shè)計(jì)頁(yè)面的時(shí)候,經(jīng)常要把DIV居中顯示,而且是相對(duì)頁(yè)面窗口水平和垂直方向居中顯示,如讓登錄窗口居中顯示。
到現(xiàn)在為止,探討了很多種方法。
HTML:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <body>
- <div class="maxbox">
- <div class="minbox align-center"></div>
- </div>
- </body>
-
效果圖(下面幾種方法效果圖一樣):
第一種: CSS絕對(duì)定位
主要利用絕對(duì)定位,再用margin調(diào)整到中間位置。
父元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .maxbox{
- position: relative;
- width: 500px;
- height: 500px;
- margin: 5px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
-
子元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .minbox{
- width: 200px;
- height: 200px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
水平垂直居中對(duì)齊:
CSS Code復(fù)制內(nèi)容到剪貼板
- .align-center{
- position: absolute;
- left: 50%;
- top: 50%;
- margin-left: -100px;
- margin-top: -100px;
- }
第二種: CSS絕對(duì)定位 + Javascript/JQuery
主要利用絕對(duì)定位,再用Javascript/JQuery調(diào)整到中間位置。相比第一種方法,此方法提高了class的靈活性。
父元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .maxbox{
- position: relative;
- width: 500px;
- height: 500px;
- margin: 5px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
-
子元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .minbox{
- width: 200px;
- height: 200px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
水平垂直居中對(duì)齊:
CSS Code復(fù)制內(nèi)容到剪貼板
- .align-center{
- position: absolute;
- left: 50%;
- top: 50%;
- }
-
JQuery:
JavaScript Code復(fù)制內(nèi)容到剪貼板
- $(function(){
- $(".align-center").css(
- {
- "margin-left": ($(".align-center").width()/-2),
- "margin-top": ($(".align-center").height()/-2)
- }
- );
- });
-
第三種: CSS3絕對(duì)定位 + 位移
使用絕對(duì)定位與CSS3的 transform: translate同樣也可以達(dá)到效果。
父元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .maxbox{
- position: relative;
- width: 500px;
- height: 500px;
- margin: 5px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
-
子元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .minbox{
- width: 200px;
- height: 200px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
-
水平垂直居中對(duì)齊:
CSS Code復(fù)制內(nèi)容到剪貼板
- .align-center{
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- -moz-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- }
-
第四種: Flexbox: [伸縮布局盒模型]
要讓元素水平垂直,對(duì)于Flexbox模型來(lái)說(shuō)太容易了。
這里得改變一下HTML:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <div class="maxbox align-center">
- <div class="minbox"></div>
- </div>
-
父元素:
CSS Code復(fù)制內(nèi)容到剪貼板
- .maxbox{
- position: relative;
- width: 500px;
- height: 500px;
- margin: 5px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
-
子元素:
C# Code復(fù)制內(nèi)容到剪貼板
- .minbox{
- width: 200px;
- height: 200px;
- box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8);
- }
水平垂直居中對(duì)齊:
CSS Code復(fù)制內(nèi)容到剪貼板
- .align-center{
- display: flex;
- display: -webkit-flex;
- justify-content: center;
- align-items: center;
- }
幾種方法的比較:
第一種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í)有所幫助。