html css画中空圆圈,实现CSS圆环的5种方法(小结)

想到去年面试实习的时候被问到实习圆环的问题,特意写篇文章总结一下吧!总结了一下大概有5种方法。

html css画中空圆圈,实现CSS圆环的5种方法(小结)_第1张图片

1. 两个标签的嵌套:

.element1{

width: 200px;

height: 200px;

background-color: lightpink;

border-radius: 50%;

}

.child1{

width: 100px;

height: 100px;

border-radius: 50%;

background-color: #009966;

position: relative;

top: 50px;

left: 50px;

}

2. 使用伪元素,before/after

.element2{

width: 200px;

height: 200px;

background-color: lightpink;

border-radius: 50%;

}

.element2:after{

content: "";

display: block;

width: 100px;

height: 100px;

bo

你可能感兴趣的:(html,css画中空圆圈)