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

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -