純css未知高度圖片垂直置中

來源:互聯網
上載者:User

box {
2        /*非IE的主流瀏覽器識別的垂直置中的方法*/
3        display: table-cell;
4        vertical-align:middle;
5
6        /*設定水平置中*/
7        text-align:center;
8
9        /* 針對IE的Hack */
10        *display: block;
11        *font-size: 175px;/*約為高度的0.873,200*0.873 約為175*/
12        *font-family:Arial;/*防止非utf-8引起的hack失效問題,如gbk編碼*/
13
14        width:200px;
15        height:200px;
16        border: 1px solid #eee;
17}
18.box img {
19        /*設定圖片垂直置中*/
20        vertical-align:middle;
21}
22
23<div class="box">
24        <img src="http://pics.taobao.com/bao/album/promotion/taoscars_180x95_071112_sr.jpg" />
25</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.