79294803

Date: 2024-12-19 15:35:19
Score: 0.5
Natty:
Report link

Try using the CSS function minmax() .

What about the following solution:

.container {
    /* Your other code */
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
}

enter image description here

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Martin Skroch