I am looking to achieve a 45 degree angle pie slice from this 90 degree angle slice. I want to keep the starting point of the curve at the bottom left.
The code I have is as follows:
.quarter-circle{
width: 100px;
height: 100px;
background: orange;
border-radius: 100px 0 0 0;
-moz-border-radius: 100px 0 0 0;
-webkit-border-radius: 100px 0 0 0;
}
<div class="quarter-circle"></div>