Answers for "border radius to make circle"

5

css circle border

.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>
Posted by: Guest on April-04-2020
2

how to round the edges of an image in HTML

img.rounded-corners {
  border-radius: 30px;
}
Posted by: Guest on September-08-2020
5

border radius css

border-radius: 5px; /* The corners will be round */
Posted by: Guest on October-08-2020

Code answers related to "border radius to make circle"

Browse Popular Code Answers by Language