css用伪类改写 li 前面的圆圈默认样式

li{

position: relative;

list-style: none;

}

li:before{
    content: "";
    width: 6px;
    height: 6px;
    color: #373983;
    border-radius: 50%;
    display:block;
    background-color: #373983;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

你可能感兴趣的:(css)