欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css绘制特殊图形基础

程序员文章站 2023-12-23 10:10:16
...
1.等腰三角形
.isosceles{
    width: 0;
    height: 0;
    border:30px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: red;
}

2.直角三角形

.right{
    width: 0;
    height: 0;
    border:30px solid;
    border-left: 0;
    border-right-color: transparent;
    border-top: 0;
    border-bottom-color: red;
}

3.圆

.round{
    width: 100px;
    height: 100px;
    background-color: red;
    border-radius:50%;   
}

4.椭圆

.ellipse{
    width: 100px;
    height: 80px;
    background-color: red;
    border-radius:50%;   
}

上一篇:

下一篇: