使用CSS实现椭圆,三角形,五角星等图形

本文介绍了如何使用CSS来创建各种几何图形,包括椭圆、不同类型的三角形、直角三角形、平行四边形、梯形、五角星、六角星、正五边形以及心形等。通过调整border-radius和transform属性,可以实现这些复杂形状的绘制。
摘要由CSDN通过智能技术生成

1.椭圆
border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。如果省略 bottom-left,则与 top-right 相同。如果省略 bottom-right,则与 top-left 相同。如果省略 top-right,则与 top-left 相同。

border-radius: 2em 1em 4em / 0.5em 3em;

等价于:

border-top-left-radius: 2em 0.5em;
border-top-right-radius: 1em 3em;
border-bottom-right-radius: 4em 0.5em;
border-bottom-left-radius: 1em 3em;
        #ellipse {
            width: 200px;
            height: 100px;
            background: red;
            color: #fff;
            text-align: center;
            border-radius: 100px/50px;
            /*-webkit-border-radius: 100px/50px;
            -moz-border-radius: 100px/50px;*/
        }

2.上三角形

        #triangle-up {
            width: 0;
            height: 0;
            color: white;
            text-align: center;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-bottom: 100px solid red;
        }

3.下三角形

        #triangle-down {
            width: 0;
            height: 0;
            color: white;
            text-align: center;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
            border-top: 100px solid red;
        }

4.左三角形

        #triangle-left {
            width: 0;
            height: 0;
            color: white;
            text-align: center;
            border-top: 50px solid transparent;
            border-bottom: 50px solid transparent;
            border-right: 100px solid red;
        }

5.右三角形

        #triangle-right {
            width: 0;
            height: 0;
            color: white;
            text-align: center;
            border-top: 50px solid transparent;
            border-bottom: 50px solid transparent;
            border-left: 100px solid red;
        }

6.左上角是直角的直角三角形

        #triangle-topleft {
            width: 0;
          
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值