Bader
Bader

Reputation: 3774

Set an image in the center of DIV

How to an image in the center of a DIV (both vertically and horizontally) ?

Upvotes: 0

Views: 9944

Answers (3)

Eric Hodonsky
Eric Hodonsky

Reputation: 5897

Give this a go:

    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;
    }

Upvotes: 2

Madara's Ghost
Madara's Ghost

Reputation: 174957

background-position: center center;

Upvotes: 1

Related Questions