Utilizing flexbox, I have successfully designed a 2 column layout with a div at the top spanning both columns for a menu format. While this works flawlessly in Chrome and iOS7, it appears to be ineffective in outdated versions of Safari. In this fiddle, you can see my implementation: http://jsfiddle.net/Jtts9/
I do not require support for Internet Explorer, but it must work on Android and iOS devices. Although it displays correctly in Chrome and iOS7, I encounter issues when using the old syntax (such as display: -webkit-box;
) because replicating the two columns becomes challenging without flex-flow: row wrap
which is absent in the older syntax. References to box-lines
have been found, yet it seems like they are not supported.
Is there a way to achieve the same appearance utilizing the older 2009 flexbox syntax?