I've designed a gallery but I can't eliminate the space between rows! Is there a way?
https://civitonia.cargo.site/27997464
CodePudding user response:
The space is caused by the line-height
being set to 1
.
Add this to your CSS:
bodycopy {
line-height: 0;
}