Search code examples
htmlcssgallery

Is there a way to delete that little space between rows in the image gallery?


I've designed a gallery but I can't eliminate the space between rows! Is there a way?

https://civitonia.cargo.site/27997464


Solution

  • The space is caused by the line-height being set to 1.

    Add this to your CSS:

    bodycopy {
        line-height: 0;
    }