Answers for "make a quarter of circle css"

CSS
2

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;
}
Posted by: Guest on November-08-2020

Browse Popular Code Answers by Language