我想把我的虚线移到我的div之后。 它一直保持在我的div之上。
这是我现在所拥有的:
这是我希望得到的:
**CSS**
/*Background Border*/
.border-center {
width: 100%;
position: relative;
}
.slide:before {
content: '';
position: absolute;
border-bottom: 3px #3498db dashed;
z-index: 1;
top: 50%;
margin-top:-2px;
right: 10%;
left: 40%;
width: 25%;
}
我希望我可以添加更多代码,因为我的代表很低,我收到了这个警告:
更多详情:JSFiddle
答案 0 :(得分:1)
让你的小提琴z-index of 0
成就了这一点,而background:white
上的.tl-box
答案 1 :(得分:0)
简而言之,盒子的z-index需要高于线条,盒子需要背景颜色为白色,以防止线条显示。