我有这样的事情:http://dabblet.com/gist/5939428
为什么这个适用于所有浏览器(甚至IE)除了Chrome?
答案 0 :(得分:0)
请你试试这个。这里我添加了z-index:1:
.grid figcaption {
position: absolute;
top: 0;
left: 0;
padding: 20px;
background: #1d1d1b;
color: #fff;
z-index:1;
}
在这里我设置了z-index值十(10)。
.cs-style-2 figure .cat, .cs-style-2 figure .cat img {
z-index: 10;
box-shadow: -1px 0 10px #000000;
-webkit-transition: -webkit-transform 1s;
-moz-transition: -moz-transform 1s;
transition: transform 1s;
position: relative;
}
它在firefox和chrome中为我工作