Image not centering
Just getting started here. Can someone tell me why this image doesn't center when I expend the browser:
Just getting started here. Can someone tell me why this image doesn't center when I expend the browser:
Hello,
For your situation you can add the following to your IMG tag to centre the image:
.center-img {
display: block; /* added by Mod */
margin-left: auto;
margin-right: auto;
}
Add this class to your CSS sheet and then to your IMG tag, this will make the browser automatically apply a margin to the left and right sides of the image, essentially centring it.
<img src="images/junk-removal-truck-2.jpg" class="center-img">
Hope this helps!
Edited by Moderator:
Because an image defaults to an inline-block level element, it needs to be converted to a block level element.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.