Esto funciona perfecto en todos los navegadores tanto de pc como de tablet como de movil, excepto en determinados ipad algo antiguos donde no respeta el z-index.
Alguno podría decirme como puedo solucionarlo. Gracias.
Código HTML:
Ver original
Código CSS:
Ver original
.swiper-slide { position: relative; overflow: hidden; text-align: center; font-size: 20px; background: transparent; /* Center slide text vertically */ display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; z-index: 1; } .datos-slide{ position: absolute; width: 300px; bottom: 0; z-index: 3; text-align: center; /*opacity: 0.6;*/ color:#000000; /*background-color: #000000;*/ -webkit-transform: translate3d(0,0,0); -moz-transform: translate3d(0,0,0); -o-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } .datos-slide p, .datos-slide small{ position: relative; z-index: 4; } img.img-swiper{ width: 300px; height: 225px; position: relative; z-index: 2; }