如何在css中制作边框圈

时间:2018-12-12 09:28:44

标签: html css3

如何在css中制作边框以圆形,目前它是方形的,所以我想使其成为圆形

    color: white;
    left: 52px;
    position: absolute;
    top: 65px;
    padding: 3px;
    background-color: rgb(0, 195, 255);
   
    font-size: 12px;
}

查看示例图片

See the sample image

3 个答案:

答案 0 :(得分:1)

将宽度和高度设置为相等的值,然后添加border-radius: 50%;

.circle {
width: 60px;
height:60px;
border-radius: 50%;
background-color: #bada55;
}
<div class="circle"></div>

答案 1 :(得分:0)

您可以使用border-radius: 20px来将20px或更高或更低地更改为更多或更少的曲线,

答案 2 :(得分:0)

在您的CSS中添加border-radius: 50%;