Solved - Styling paged content

Is it best practice to put each feature on a page in a grid even if only one column is required sometimes

I’m not sure about best practice but sometimes I do and sometimes I just use bottom margin like so:

.my-item:not(:last-child) {
  margin-bottom: 20px;
}
1 Like