答案 0 :(得分:1)
为什么不使用:在使用CSS的元素之前将其拉出来?你可以有一个白色背景的DIV然后做这样的事情:
div {
background-color: #fff;
position: relative;
}
div:before {
position: absolute;
top: -10px;
left: 50%; <- You'll need to play with this value a bit more
width: 20px;
height: 20px;
background-color: #fff;
border-radius: 50%;
}