how to make a quarter of a circle in css code example
Example: make a quarter of circle css
.quarter{
width: 150;
height: 150;
border-top-right-radius:0;
border-top-left-radius:0;
border-bottom-right-radius:0;
border-bottom-left-radius:100%;
background: red;
}