I'm working on a small personal project, and for the main page, it's going to be several images, one after another, each the size of the page.
I'm try to get rid of this type of spacing:
Any help is appreciated, thank you!
I'm working on a small personal project, and for the main page, it's going to be several images, one after another, each the size of the page.
I'm try to get rid of this type of spacing:
Any help is appreciated, thank you!
Set display: block
for each img
. Example in the snippet below. height
is set just so the image isn't too big.
img {
display: block;
height: 150px;
}
<img src="http://i.imgur.com/B5vX1kN.jpg"/>
<img src="http://i.imgur.com/KYXOUfE.png"/>
You should post your CSS and HTML code otherwise it is quite hard fix that problem.
A possible solution is
img{border:0;}
or
img {display: block;}