I have a circle with a border like below, how to set border on this circle without using border-right, left, top, bottom
? I want to add a border, e.g. only for 10-20% of this circle border
.circle {
background-color:#fff;
border-bottom:1px solid red;
border-radius: 100%;
height:100px;
width:100px;
}
<div class="circle"></div>
thanks for any help