您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何使用CSS實行居中,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
CSS居中在設計中經常使用,我們在使用css來布局時經常需要進行居中,有時一個屬性就能搞定,有時則需要一定的技巧才能兼容到所有瀏覽器,利用css來實現對象的垂直居中有許多不同的方法,比較難的是應該選擇哪種正確的方法。比如我們都知道 margin:0 auto;的樣式能讓元素水平居中,而margin: auto;卻不能做到垂直居中。下面就css居中的一些常用方法做個集中的介紹。
首先是水平居中,最簡單的辦法當然就是:
margin:0 auto;
文字的水平居中方法:
利用line-height設為height的一樣即可:
eg:
.div {
width:200px;
height: 200px;
line-height: 200px;/*實現垂直居中的關鍵*/
text-align:center;
font-size: 36px;
background-color: #ccc;
}
絕對定位居中
父容器元素:position: relative,子元素:position:absolute;
eg:
<div class="box">
<div class="content"></div>
</div>
<style>
.box{position:relative;width:200px;height:200px;background:#999;}
.content{
width: 50%;
height: 50%;
overflow: auto;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
background:#C9F;}
</style>
效果如下所示:
學會這幾種方法,css居中其實很簡單
!注意:高度必須定義,建議加 overflow: auto,防止內容溢出。
flex居中
介紹一下CSS3中的display:flex來實現的水平垂直居中的方法。
eg:
<div class="parent">
<div class="children">我是通過flex的水平垂直居中噢!</div>
</div>
<style>
.parent {
display:flex;
align-items: center;/*垂直居中*/
justify-content: center;/*水平居中*/
width:200px;
height:200px;
background-color:green;
}
.children {
background-color:blue;
color:#FFF;
}
</style>
感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何使用CSS實行居中”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。