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

Time:10-07

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;
}
  • Related