I have a div element I wants to apply border radius of 100px, so that it will be in a circular shape. Unfortunately the border radius is not applying to the div element. The CSS selector looks like this:
.battery-circle {
border: 4px solid;
border-image-slice: 1;
border-radius: 30em;
border-image-source: linear-gradient(to left, #743ad5, rgba(163,61,255,1) 84%);
}