我有两个 div 一个在另一个里面,我想将一个 div 与另一个重叠并使用 css idnex,但 ie 不允许我这样做,有什么解决方法吗?
请在 IE 中查看此代码,因为它适用于其他浏览器。
这是jsfiddle:http: //jsfiddle.net/xkDCX/1/
和代码:
<div class="container">
<div class="button"></div>
<div>
body{
margin:50px;
}
.container{
position:relative;
width:410px;
height: 300px;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#daf5fd', endColorstr='#0dbcf5');
z-index:22;
}
.button{
width:20px;
height:20px;
border:2px solid black;
position:absolute;
right:-10px;
top:-10px;
background:black;
z-index:11;
}