css - Foundation modal appears behind reveal background in iOS -
i'm trying make confirmation modal appear on button click. modal appears, behind background 'grays out' rest of page.
relevant css: .reveal-modal-bg { background: rgba(0,0,0,.75); z-index:2000; } .reveal-modal { border-radius:7px; border:none; padding:20px; z-index:9999; } as can see, z-indices being set correctly. modal appears correctly on desktop in chrome, using safari in ios 9 causes modal appear incorrectly. can tell me how in front of background? thank in advance
this works me
.reveal-modal { z-index:2000 !important; -webkit-transform: translate3d(0,0,1px); transform: translate3d(0,0,1px); }
Comments
Post a Comment