在DIV的中心设置图像

时间:2012-01-26 16:58:56

标签: css html centering

如何在DIV中心(垂直和水平)拍摄图像?

3 个答案:

答案 0 :(得分:2)

答案 1 :(得分:2)

放手一搏:

    div.wrapper{
      width:75px;
      height:75px;
    }
    img{
      width:50px;
      height:50px;
      display:block;
    /* For vertical center - margin: 0 auto;
       For horizontal center - margin: auto 0px;*/
      margin: auto auto;
    }

答案 2 :(得分:1)

background-position: center center;