Hi,
I’ve created a content page that contains a section with 1 row that has 5 columns. These columns need to wrap on smaller display sizes to display properly. So I’ve added some CSS to the row to acomplish just that (found it on the forum). I’t works on all browsers exept for Safari, on Safari the last item wraps to the next line.
$el{
display:flex;
align-items: center;
flex-wrap: wrap;
}
Result in Safari:
Does anyone know how to fix it on Safari?
Thanks!