Home › Forums › CSS › image hover text help › Reply To: image hover text help
September 17, 2014 at 5:04 pm
#183437
Participant
try adding this to .imageHolder .caption
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 20px; // for example
If you add display: block;
to the image then it will remove the tiny whitespace beneath it. Your black overlay box will then be the same size as the image.