Site disappears in Safari, why?
If you take a look at this site
the site is displayed fine in IE, FF, Chrome, h开发者_StackOverflow中文版owever, if you look at it with Safari, it hides the site? Can't quite seem to figure out what's tricking this?
Change the z-index of <div id="bg-box"></div>
to negative value;Now it is z-index: 1
; Turned it to z-index: -1
.I think it may work.
Doesn't in my Safari (up-to-date, SL)
It does show for a split second. All the elements in your divs are still there. Play around with your sizing and positioning. I have a good feeling that is messing it up.
your bg-box
class has a z-index of 1. Your other classes have no z-index. In Safari no z-index is less than a z-index of 1 (sometimes). Set your other top level divs to have a z-index of 2 and it all looks fine.
精彩评论