As I work on developing my website, I have been using flexbox to assist with the layout. It has been functioning well on most browsers, but I have encountered issues with Safari versions below 6.1. Specifically, I am struggling with flex-wrap as I want the elements to automatically wrap horizontally. For Safari 6 and below, I am looking for something like this code snippet:
display: flex;
-webkit-flex-flow: row wrap;
I have tried searching for a solution, but it seems like there is uncertainty about whether this feature is supported in older Safari versions. I came across a similar question on Stack Overflow (found here), but the information was not clear. My main question is: is this feature supported in Safari 6 and below? If not, is there an alternative way to achieve a similar effect?