问题
The drop down menus on this site fire off on hover, and then when active, they appear horizontally by using 'display: flex;' in CSS. Can't figure out how to get this to work with Safari though. It works in Chrome, but not Safari.
www.soakandswim.com/wp/pools <--for reference.
Any insight? Thanks!
回答1:
Some browsers do not fully support all the CSS3 elements. Try this:
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
来源:https://stackoverflow.com/questions/22416445/displayflex-not-supported-in-safari