UI小姐姐不给你小三角图标怎么办??

最近得罪了UI小姐姐,因为没有给她买奶茶喝,所以下午不愿意给我制作小三角图标。作为一个小前端,本着能屈能伸的优秀品质,决定还是靠自己双手自力更生,而且能省下一顿饭钱和奶茶钱,甚至是开房钱哈哈,真是一举三得啊!
话不多说,下面我们来看看图中的小三角要如何用css样式实现。
在这里插入图片描述
各种三角形实现代码如下

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      * {
        margin: 0;
        padding: 0;
      }
      div {
        width: 0px;
        /* 宽一定要写 0*/

        /* 想要的图标三角形 */
        border-top: 50px solid #bbbbbb;
        border-right: 50px solid transparent;
        border-left: 50px solid transparent;
        border-bottom: 50px solid transparent;

        /* 直角三角形 */
        /* border-top: 0px solid yellow;
        border-right: 0px solid blue;
        border-left: 20px solid #8a2be2;
        border-bottom: 30px solid transparent; */

        /* 锐角三角形 */
        /* border-top: 50px solid yellow;
        border-right: 50px solid blue;
        border-left: 50px solid #8a2be2;
        border-bottom: 100px solid green; */

        /* 钝角三角形  */
        /* border-top: 50px solid yellow;
        border-right: 50px solid blue;
        border-left: 100px solid #8a2be2;
        border-bottom: 100px solid green; */

        /* 正方形 */
        /* border-top: 50px solid yellow;
        border-right: 50px solid blue;
        border-left: 50px solid #8a2be2;
        border-bottom: 50px solid green; */
      }
    </style>
  </head>
  <body>
    <div></div>
  </body>
</html>

原理是利用盒子的boder来绘制三角形,将不想看到的颜色设置成transparent透明即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值