Answers for "how to make semi circle in border in css"

CSS
3

how to create a semi circle in css

div { 
        position: absolute; 
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%); 
        height: 100px; 
        width: 200px; 
      	border-radius: 150px 150px 0 0; }
Posted by: Guest on February-24-2021
7

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

Code answers related to "how to make semi circle in border in css"

Browse Popular Code Answers by Language