該方法是將外部容器的顯示模式設置成display:table,img標籤外部再嵌套一個span標籤,並設置span的顯示模式爲display:table-cell,這樣就能夠很方便的使用vertical-align象表格元素那樣對齊了,固然這只是在標準瀏覽器下,IE6/IE7還得使用定位。
HTML代碼css
<div id="box"> <span><img src="images/demo.jpg" alt="" /></span> </div>
CSS代碼html
<style type="text/css"> #box{ width:500px;height:400px; display:table; text-align:center; border:1px solid #d3d3d3;background:#fff; } #box span{ display:table-cell; vertical-align:middle; } #box img{ border:1px solid #ccc; } </style> <!--[if lte IE 7]> <style type="text/css"> #box{ position:relative; overflow:hidden; } #box span{ position:absolute; left:50%;top:50%; } #box img{ position:relative; left:-50%;top:-50%; } </style> <![endif]-->
方法二和方法一的實現的原理大同小異,結構也是相同的,方法一用的是條件註釋,方法二就用的CSS Hack。
CSS代碼express
<style type="text/css"> #box{ width:500px;height:400px; overflow:hidden; position:relative; display:table-cell; text-align:center; vertical-align:middle; border:1px solid #d3d3d3;background:#fff; } #box span{ position:static; *position:absolute; /*針對IE6/7的Hack*/ top:50%; /*針對IE6/7的Hack*/ } #box img { position:static; *position:relative; /*針對IE6/7的Hack*/ top:-50%;left:-50%; /*針對IE6/7的Hack*/ border:1px solid #ccc; } </style>
該方法有個弊端,在標準瀏覽器下因爲外部容器#box的顯示模式爲display:table-cell,因此致使#box沒法使用margin屬性,而且在IE8下設置邊框也無效。瀏覽器
標準瀏覽器仍是將外部容器#box的顯示模式設置爲display:table-cell,IE6/IE7是利用在img標籤的前面插入一對空標籤的辦法。性能
HTML代碼字體
<div id="box"> <i></i><img src="images/demo.jpg" alt="" /> </div>
CSS代碼this
<style type="text/css"> #box{ width:500px;height:400px; display:table-cell; text-align:center; vertical-align:middle; border:1px solid #d3d3d3;background:#fff; } #box img{ border:1px solid #ccc; } </style> <!--[if IE]> <style type="text/css"> #box i { display:inline-block; height:100%; vertical-align:middle } #box img { vertical-align:middle } </style> <![endif]-->
在img標籤外包裹一個p標籤,標準瀏覽器利用p標籤的僞類屬性:before來實現,IE6/IE7使用了CSS表達式來實現兼容。
HTML代碼編碼
<div id="box"> <p><img src="images/demo.jpg" alt="" /></p> </div>
CSS代碼spa
#box{ width:500px;height:400px; text-align:center; border:1px solid #d3d3d3;background:#fff; } #box p{ width:500px;height:400px; line-height:400px; /* 行高等於高度 */ } /* 兼容標準瀏覽器 */ #box p:before{ content:"."; /* <a href="http://casinogreece.gr/">????????????</a> 具體的值與垂直居中無關,儘量的節省字符 */ margin-left:-5px; font-size:10px; /* 修復居中的小BUG */ visibility:hidden; /*設置成隱藏元素*/ } #box p img{ *margin-top:expression((400 - this.height )/2); /* CSS表達式用來兼容IE6/IE7 */ vertical-align:middle; border:1px solid #ccc; }
使用:beforr這個方法對於標準瀏覽器來講比較給力,也沒發現有反作用,可是對於IE6/IE7,若是對性能要求較高的話CSS表達式的方法要慎用。3d
該方法針對IE6/IE7,將圖片外部容器的字體大小設置成高度的0.873倍就能夠實現居中,標準瀏覽器仍是使用上面的方法來實現兼容,而且結構也是比較優雅。
HTML代碼
<div id="box"> <img src="images/demo.jpg" alt="" /> </div>
CSS代碼
#box{ width:500px;height:400px; text-align:center; border:1px solid #d3d3d3;background:#fff; /* 兼容標準瀏覽器 */ display: table-cell; vertical-align:middle; /* 兼容IE6/IE7 */ *display:block; *font-size:349px; /* 字體大小約爲容器高度的0.873倍 400*0.873 = 349 */ *font-family:Arial; /* 防止非utf-8引發的hack失效問題,如gbk編碼 */ } #box img{ vertical-align:middle; }
設置字體大小的方法感受比較怪異,也沒有看到一個合理的解釋,只知道圖片元素有一些不一樣於其餘元素的特性,可是對於IE6/IE7來講,這個方法仍是比較給力的。
思考:不少方法都是依賴於將外部容器的顯示模式設置成table才能實現垂直居中,也就是div來模擬table。