Hello,
All that you need to do is add some padding around the images. You can do this a number of ways. First you could add padding all the way around the images:
Code:
img {
display: block;
padding: 1em;
}
Second you could add padding to just the top and bottom of each image:
Code:
img {
display: block;
padding: 1em 0;
}
Or you could add padding to just the top or bottom of the images:
Code:
img {
display: block;
padding-top: 1em;
}
Code:
img {
display: block;
padding-bottom: 1em;
}
Experiment with each technique to see which works the best for your particular application.
Bookmarks