Answers for "cool border radius css"

CSS
5

border-radius circle using %

.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
13

css border radius

-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Posted by: Guest on June-26-2019
5

border radius css

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

Browse Popular Code Answers by Language