Is it possible to divide a circle into 2 parts using both RGB and URL images?
Here is an example of how I want it to look: https://i.sstatic.net/r5sWj.png
I have managed to write code that works with RGB, but I am unsure how to achieve the same effect with a URL image. Can someone please assist me:
.divided-circle {
width: 25px;
height: 25px;
background: linear-gradient( 135deg, #26A0DA 50%, #d92550 50%);
border-radius: 50%;
border: 0.5px solid #9b9b9b;
margin-right: 5px;
}
<div>
<div class="divided-circle"></div>
</div>