📜  制作四分之一圆css代码示例

📅  最后修改于: 2022-03-11 14:47:58.210000             🧑  作者: Mango

代码示例1
.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;
}