CSS設定圖片置中

來源:互聯網
上載者:User
代碼

<style>
     .wrapper{
     /*非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;
     }
     .wrapper img {
     /*設定圖片垂直置中*/
     vertical-align:middle;
     }
</style>

 

相關文章

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.