请检查这个小提琴:http://jsfiddle.net/5WGLs/
如果将鼠标悬停在 basker-holder
上,您可以看到它是子边框> shopping-cart
顶部边框不在父边框后面。它应该是白色的。我正在寻找的效果是这样的:
https://i.stack.imgur.com/XBV82.png
只需将position: relative;
、background-color: #fff;
和z-index: 2000;
添加到.cart-btn
。
这样,.cart-btn
将超过.shopping-cart
,background-color
将隐藏到边框顶部。
查看示例:http://jsfiddle.net/5WGLs/3/
希望这有帮助。
您可以使用z-index
.演示
但是你应该阅读没有人告诉你的关于 Z 指数的内容,因为使用这么大的 z 指数是没有用的。
jsfiddle demo
玩z-index
,background;
我们可以实现这一目标
编辑的 CSS
.cart-btn {
color: #333;
display: inline-block;
margin-top: 12px;
padding: 5px 22px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
line-height: 30px;
border: 1px solid #fff;
position: relative;
z-index:10;
background:#fff;
}
.shopping-cart {
position: absolute;
background: #FFF;
left: 0;
text-align: left;
width: 160px;
border: 1px solid #fe4365;
top: 52px;
opacity: 0;
transform: translateY(25px) rotateY(50deg);
z-index:-1;
}