<div id="box">
<div id="body">Blah blah blah</div>
</div>
#box {
box-shadow: 0 0 8px black;
}
#body {
height:100px;
transition: height 0.8s ease;
}
#body:hover {
height: 200px;
}
在 IE10 中,当过渡改变内容的高度时,框底部的阴影会出现故障。请注意,仅当内容框改变高度时才会发生这种情况。如果是容器,阴影效果很好。但是,我无法更改容器的大小,因为我希望它是动态的以适应其内容。
有什么解决方法吗?