Answers for "how to apply border radius to two corner"

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

round 2 corners of div css

border-bottom-left-radius: 50%;
Posted by: Guest on September-05-2021

Code answers related to "how to apply border radius to two corner"

Browse Popular Code Answers by Language