css实现圆环元素装饰特效

.green-info {position:relative}
.green-info:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #f0be4d;
}

 

posted @ 2020-10-24 11:52  绿林豪士  阅读(287)  评论(0编辑  收藏  举报