Remove the following Gaps between two rows when using css Grid as to show 3 colums by sided by side

Viewed 12
1 Answers

Its resolved. I have updated the divs CSS that contains the lists,

{
  column-gap: 40px;
  column-count: 3;
  display: list-item; 
}
Related