您好,登錄后才能下訂單哦!
小編給大家分享一下css怎樣實現圖片水平垂直居中,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、text-align: center實現圖片水平居中
text-align一般用于文本的水平居中,也可以用于圖片,代碼如下:
CSS部分:
<style type="text/css"> div{ text-align: center; width: 500px; border: green solid 1px; } </style>
HTML部分:
<div> <img src="img/logo.png" /> </div>
2、line-height和text-align: center 實現圖片的水平垂直居中
設置line-height的值等于height,可以實現垂直居中,text-align: center可以實現水平居中。HTML部分一樣,CSS代碼如下:
<style type="text/css"> div{ text-align: center; width: 400px; height:200px; line-height:200px; border: green solid 1px; } img{ vertical-align: middle; } </style>
3、display: table和display: table-cell實現圖片水平垂直居中
利用table方法設置display: table,display: table-cell,但是這種方法并不兼容IE6/IE7,如果你不需要支持IE67可以使用這種方法
css樣式直接寫在標簽里面,代碼如下:
<div style="text-align: center; width: 400px;height:200px; display: table;border: green solid 1px;"> <span style="display: table-cell; vertical-align: middle; "> <img src="img/logo.png" /> </span> </div>
4、position實現圖片水平垂直居中
定位方法:在父盒子中設置相對定位,在子盒子中設置絕對定位,即所謂的父相對子絕對。設置圖片位置左邊為50%,上邊為50%,(注意:這樣并沒有垂直居中),還需要設置margin-left為圖片長度的一半,margin-top為圖片高度的一半。HTML部分一樣,CSS代碼如下;
<style type="text/css"> div{ width: 400px; height:200px; position: relative; border: green solid 1px; } img{ width: 200px; height: 50px; position: absolute; left: 50%; top: 50%; margin-left: -100px; margin-top: -25px; } </style>
5、背景background實現圖片水平垂直居中
利用background: url no-repeat center center 實現圖片的水平垂直居中
div{ width: 400px; height:200px; border: green solid 1px; background: url(img/logo.png) no-repeat center center ; }
以上是“css怎樣實現圖片水平垂直居中”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。