所以我在这里有这个CSS:
.outerDot {
width: 50px;
height: 50px;
background: white;
border: 4px solid blue;
border-radius: 50px;
}
.outerDot:after {
background: blue;
width: 20px;
height: 20px;
}
我希望.outerDot:after
出现在.outerDot
. 我在吠叫错误的树吗? 提琴手
html 只是<div class="outerDot"></div>
.