círculo CSS
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Combative Cowfish
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
.circle {
background-color:#fff;
border:1px solid red;
height:100px;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
width:100px;
}
<div class="circle"></div>
#rcorners {
border-radius: 25px;
}
#div2{
width: 150px;
height: 150px;
border: 3px solid #05ffb0;
border-radius: 50%;
padding: 20px;
text-align: center;
}