css中常用的幾種居中方法
在前端面試中,大都會問你div居中的方法:
文筆不好,就隨便寥寥幾句話概括了,希望大家能夠輕拍
不過以後文筆肯定會變得更好一些的。
今天我們就細數一下幾種方法:
1,使用position:absolute,設定left、top、margin-left、margin-top的屬性
.one{
這種方法基本瀏覽器都能夠相容,不足之處就是需要固定寬高。
position:absolute;
width:200px;
height:200px;
top:50%;
left:50%;
margin-top:-100px;
margin-left:-100px;
background:red;
}
2,使用position:fixed,同樣設定left、top、margin-left、margin-top的屬性
.two{
position:fixed;
width:180px;
height:180px;
top:50%;
left:50%;
margin-top:-90px;
margin-left:-90px;
background:orange;
}
大家都知道的position:fixed,IE是不支援這個屬性的
3,利用position:fixed屬性,margin:auto這個必須不要忘記了。
.three{
position:fixed;
width:160px;
height:160px;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
background:pink;
}
4,利用position:absolute屬性,設定top/bottom/right/left
.four{
position:absolute;
width:140px;
height:140px;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
background:black;
}
5,利用display:table-cell屬性使內容垂直居中
.five{
display:table-cell;
vertical-align:middle;
text-align:center;
width:120px;
height:120px;
background:purple;
}
6,最簡單的一種使行內元素居中的方法,使用line-height屬性
.six{
width:100px;
height:100px;
line-height:100px;
text-align:center;
background:gray;
}
這種方法也很實用,比如使文字垂直居中對齊
7,使用css3的display:-webkit-box屬性,再設定-webkit-box-pack:center/-webkit-box-align:center
.seven{
width:90px;
height:90px;
display:-webkit-box;
-webkit-box-pack:center;
-webkit-box-align:center;
background:yellow;
color:black;
}
8,使用css3的新屬性transform:translate(x,y)屬性
.eight{
position:absolute;
width:80px;
height:80px;
top:50%;
left:50%;
transform:translate(-50%,-50%);
-webkit-transform:translate(-50%,-50%);
-moz-transform:translate(-50%,-50%);
-ms-transform:translate(-50%,-50%);
background:green;
}
這個方法可以不需要設定固定的寬高,在移動端用的會比較多,在移動端css3相容的比較好
9、最高大上的一種,使用:before元素
.nine{
position:fixed;
display:block;
top:0;
right:0;
bottom:0;
left:0;
text-align:center;
background:rgba(0,0,0,.5);
}
.nine:before{
content:'';
display:inline-block;
vertical-align:middle;
height:100%;
}
.nine .content{
display:inline-block;
vertical-align:middle;
width:60px;
height:60px;
line-height:60px;
color:red;
background:yellow;
}
這種方法在我的前面一片文章有詳細的介紹:第九種居中方法詳情
相關文章
- css居中幾種方法CSS
- Css實現垂直居中的幾種方法CSS
- css實現垂直水平居中的幾種方法CSS
- css幾個居中的方法CSS
- 【CSS三種居中方案全解】CSS水平垂直居中常用方法集結CSS
- CSS元素居中常用方法CSS
- css實現水平垂直居中的幾種方式CSS
- absolute定位css元素居中的兩種方法CSS
- 前端基礎問題:CSS居中的幾種方式前端CSS
- CSS中的多種居中方式CSS
- css--元素居中常用方法總結CSS
- div實現水平垂直居中的幾種方法
- iOS 開發中 runtime 常用的幾種方法iOS
- 【基礎】這15種CSS居中的方式,你都用過哪幾種?CSS
- CSS水平居中和垂直居中的方法CSS
- 建樹的幾種常用方法
- iframe跨域的幾種常用方法跨域
- linux中後臺執行程式常用的幾種方法Linux行程
- 前端開發入門到實戰:css實現div垂直水平居中的2種常用方法前端CSS
- 【css系列】六種實現元素水平居中方法CSS
- Python教程: 反射及常用的幾種方法Python反射
- Linux埠轉發的幾種常用方法Linux
- 各種CSS居中方案CSS
- CSS佈局-各種居中CSS
- 理解水平居中的幾種表現
- CSS居中常見方法CSS
- CSS居中方法大全CSS
- CSS垂直居中方法CSS
- CSS垂直居中的七個方法CSS
- div垂直居中-CSS元素垂直居中方法CSS
- [css佈局1]不知寬高情況下,水平垂直居中的幾種方式CSS
- CSS實現水平、垂直居中,N種方法,徹底說透!CSS
- 幾種集合的幾種方法
- 16種方法實現水平居中垂直居中
- css中居中總結CSS
- JS常用判斷空對像的幾種方法JS
- Java中幾種常用的RPC框架介紹JavaRPC框架
- CSS佈局——div居中方法CSS
- 網頁元素居中的n種方法網頁