水平居中:行內元素解決方案css
只須要把行內元素包裹在一個屬性display爲block的父層元素中,而且把父層元素添加以下屬性便可:css3
.parent { text-align:center; }
水平居中:塊狀元素解決方案佈局
.item { /* 這裏能夠設置頂端外邊距 */ margin: 10px auto; }
水平居中:多個塊狀元素解決方案
將元素的display屬性設置爲inline-block,而且把父元素的text-align屬性設置爲center便可:flex
.parent { text-align:center; }
水平居中:多個塊狀元素解決方案 (使用flexbox佈局實現)
使用flexbox佈局,只須要把待處理的塊狀元素的父元素添加屬性display:flex及justify-content:center便可:flexbox
.parent { display:flex; justify-content:center; }
垂直居中:單行的行內元素解決方案code
.parent { background: #222; height: 200px; } /* 如下代碼中,將a元素的height和line-height設置的和父元素同樣高度便可實現垂直居中 */ a { height: 200px; line-height:200px; color: #FFF; }
垂直居中:多行的行內元素解決方案
組合使用display:table-cell和vertical-align:middle屬性來定義須要居中的元素的父容器元素生成效果,以下:orm
.parent { background: #222; width: 300px; height: 300px; /* 如下屬性垂直居中 */ display: table-cell; vertical-align:middle; }
垂直居中:已知高度的塊狀元素解決方案it
.item{ top: 50%; margin-top: -50px; /* margin-top值爲自身高度的一半 */ position: absolute; padding:0; }
垂直居中:未知高度的塊狀元素解決方案io
.item{ top: 50%; position: absolute; transform: translateY(-50%); /* 使用css3的transform來實現 */ }
水平垂直居中:已知高度和寬度的元素解決方案1
這是一種不常見的居中方法,可自適應,比方案2更智能,以下:table
.item{ position: absolute; margin:auto; left:0; top:0; right:0; bottom:0; }
水平垂直居中:已知高度和寬度的元素解決方案2
.item{ position: absolute; top: 50%; left: 50%; margin-top: -75px; /* 設置margin-left / margin-top 爲自身高度的一半 */ margin-left: -75px; }
水平垂直居中:未知高度和寬度元素解決方案
.item{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 使用css3的transform來實現 */ }
水平垂直居中:使用flex佈局實現
.parent{ display: flex; justify-content:center; align-items: center; /* 注意這裏須要設置高度來查看垂直居中效果 */ background: #AAA; height: 300px; }