答案 0 :(得分:0)
如果我正确地阅读了您的问题,则表示这些“否定”问题。灰色区域的角落?
您可以尝试使用伪元素(:after
,:before
)。
类似的东西:
li {
position: relative;
}
li:after {
background-color: white;
content: '';
display: block;
position: absolute;
width: 10px;
height: 10px;
right: -5px;
bottom: -5px;
z-index: 1;
border-radius: 10px;
}
答案 1 :(得分:-1)