內(nèi)聯(lián)元素居中方案
水平居中設(shè)置:
行內(nèi)元素 設(shè)置text-align:center;
Flex布局 設(shè)置display:flex; justify-content:center;
(靈活運(yùn)用)
垂直居中設(shè)置:
父元素高度確定的單行文本(內(nèi)聯(lián)元素) 設(shè)置 height = line-height;
父元素高度確定的多行文本(內(nèi)聯(lián)元素) a:插入 table
(插入方法和水平居中一樣),然后設(shè)置vertical-align:middle;
b:先設(shè)置display:table-cell
再設(shè)置 vertical-align:middle;
塊級元素居中方案
水平居中設(shè)置:
定寬塊狀元素 設(shè)置margin:0 auto姚垃;
不定寬塊狀元素 a:在元素外加入table
標(biāo)簽(完整的傻唾,包括table、tbody道逗、tr、td
),該元素寫在td
內(nèi)奔缠,然后設(shè)置 margin:0 auto;
b:給該元素設(shè)置 display:inine
方法吼野; c:父元素設(shè)置 position:relative
和 left:50%校哎,
子元素設(shè)置 position:relative
和 left:50%;
垂直居中設(shè)置:
1.使用position:absolute(fixed)
,設(shè)置left、top、margin-left闷哆、margin-top
的屬性;
.box{ position:absolute;/*或fixed*/
top:50%;
left:50%;
margin-top:-100px;
margin-left:-200px;
}
2.利用position:fixed(absolute)
屬性腰奋,margin:auto
這個(gè)必須不要忘記了;
.box{ position: absolute;/*或fixed*/
top:0;
right:0;
bottom:0;
left:0;
margin: auto;
}
3.利用display:table-cell
屬性使內(nèi)容垂直居中;
.box{ display:table-cell;
vertical-align:middle;
text-align:center;
width:120px;
height:120px;
background:purple;
}
4.使用css3的新屬性transform:translate(x,y)
屬性;
.box{ position: absolute;
transform: translate(50%,50%);
-webkit-transform:translate(50%,50%);
-moz-transform:translate(50%,50%);
-ms-transform:translate(50%,50%);
}
5.最高大上的一種,使用:before
元素;
.box{ position:fixed;
display:block;
background:rgba(0,0,0,.5);
}
.box:before{ content:'';
display:inline-block;
vertical-align:middle;
height:100%;
}
.box.content{ width:60px;
height:60px;
line-height:60px;
color:red;
}
6.Flex布局;
.box{ display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -moz-flex;
display: -ms-flexbox;
display: flex;
水平居中
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-pack:center;
-webkit-justify-content: center;
-moz-justify-content: center;
justify-content: center;
垂直居中
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-align:center;
-webkit-align-items: center;
-moz-align-items: center;
align-items: center;
}