用css實現圖片垂直置中的提示

來源:互聯網
上載者:User

題目的痛點在於兩點:

垂直置中;

圖片是個置換元素,有些特殊的特性。

至於如何解決,下面是一個權衡的相對結構乾淨,CSS簡單的解決方案:

.box {

/*非IE的主流瀏覽器識別的垂直置中的方法*/

display: table-cell;

vertical-align:middle;

/*設定水平置中*/

text-align:center;

/* 針對IE的Hack */

*display: block;

*font-size: 175px;/*約為高度的0.873,200*0.873 約為175*/

*font-family:Arial;/*防止非utf-8引起的hack失效問題,如gbk編碼*/

width:200px;

height:200px;

border: 1px solid #eee;

}

.box img {

/*設定圖片垂直置中*/

vertical-align:middle;

}

<div class="box">

<img src="http://www.jb51.net/images/logo.gif" />

</div>

當然還有其他的解決方案,在此不深究,

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.