我試圖用內部陰影和內部圖像來縮放div。這裏是代碼:CSS3內部陰影在縮放中消失
<!DOCTYPE html>
<html>
<head>
<title> Home Page </title>
<style>
div#b{
box-shadow:0 0 10px 2px #fff inset;
border-radius:10px;
width:230px;
height:150px;
transition: all 1s ease;
}
div#b:hover {
position:relative;
z-index:3;
transform:scale(1.2,1.2) rotate(0.02deg);
}
div#b img{
width:230px;
height:150px;
border-radius:10px;
position: relative;
z-index:-2;
}
</style>
</head>
<body>
<div id="b">
<a href="#">
<img src="img.jpg" alt="img" title="myimg">
</a>
</div>
</body>
</html>
問題是,當鼠標懸停在div上,圖像出現在div隱藏內部陰影。
我已經試過z-index:3的div:懸停但沒有結果。 可以幫我嗎?
在此先感謝
你介意把你的問題到的jsfiddle?它會幫助我們幫助你! – Morklympious 2014-10-09 12:56:15