I have a css grid
#featuredRestaurantSection {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-auto-rows: minmax(100px, auto);
-webkit-column-gap: 10px;
column-gap: 10px;
row-gap: 2em;
padding: 10px;
}
It displays fine, with 3 columns. But whenever any column has text that is large, that text doesn't wrap inside, but stretches the whole column.
What can I do?