CSS3中可以使用border-radius属性来实现圆圈的效果。
.circle { width: 50px; height: 50px; border-radius: 50%; background-color: red; }
上述代码中设置了一个宽高都为50px的元素,并使用border-radius属性将其变成一个圆形。注意,这里的border-radius值为50%,并不是固定值。
如果需要制作不同大小的圆圈,可以通过调整元素的宽高和border-radius值来实现。
.small-circle { width: 20px; height: 20px; border-radius: 50%; background-color: blue; } .large-circle { width: 100px; height: 100px; border-radius: 50%; background-color: green; }
上述代码分别制作了一个宽高为20px和一个宽高为100px的圆圈。同样是使用border-radius: 50%来实现,但是元素的宽高不一样,导致最终呈现的圆圈大小也不一样。