1

JSFiddle here.

OR

#left-control {
   float: left;
   height: 300px;
   width:300px;
   background-color:crimson;
}

#left-control:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

#left-control img {
    vertical-align: middle;
    z-index: 1;
 
 margin: 0 auto;
}
<a id="left-control">
    <img src="https://events.columbia.edu/3.10/calrsrc.MainCampus/themes/columbiaTheme/resourcesColumbia/FacebookIcon.png" />
 </a>

I have taken the following hack from here to vertically center an img in an a tag.

The problem is that I am used to using margin:0 auto; to center things. But the problem is that it is not working along with this technique of centering vertically.

Why is that? What can I do to solve this problem?

Community
  • 1
  • 1
Solace
  • 8,612
  • 22
  • 95
  • 183

3 Answers3

2

Use following css:

#left-control::before {
    height: 100%;
    content: "";
}
#left-control {
    background-color: crimson;
    display: table;
    height: 300px;
    line-height: 300px;
    text-align: center;
    width: 300px;
}

Remove float: left; from #left-control. And use display: table; line-height: 300px; text-align: center;

And remove display: inline-block; vertical-align: middle; from #left-control::before

Working Fiddle

ketan
  • 19,129
  • 42
  • 60
  • 98
1

The image width is not 100%, thus a margin: 0 auto; will not work to center align the image. Your best bet is to do a text-align: center; on the <a> tag with ID left-control to make the icon center-aligned.

Leon Adler
  • 2,993
  • 1
  • 29
  • 42
Jared Thomas
  • 110
  • 7
1

Add text align #left-control text-align:center

#left-control {
   float: left;
   height: 300px;
   width:300px;
text-align:center;
   background-color:crimson;
}

#left-control:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

#left-control img {
    vertical-align: middle;
    z-index: 1;
 
 margin: 0 auto;
}
<a id="left-control">
    <img src="https://events.columbia.edu/3.10/calrsrc.MainCampus/themes/columbiaTheme/resourcesColumbia/FacebookIcon.png" />
 </a>
Lalji Tadhani
  • 14,041
  • 3
  • 23
  • 40