Answers for "figure with border radius"

CSS
7

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
1

border radius 4 values

/* top-left | top-right | bottom-right | bottom-left */
border-radius: 1px 0 3px 4px;
Posted by: Guest on July-09-2021

Code answers related to "figure with border radius"

Browse Popular Code Answers by Language