码迷,mamicode.com
首页 > Web开发 > 详细

如何用css画三角形

时间:2018-03-26 16:53:43      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:ber   select   parent   top   class   com   alt   sel   order   

1、
#triangle02{ width: 0; height: 0; border-top: 50px solid blue; border-right: 50px solid red; border-bottom: 50px solid green; border-left: 50px solid yellow;
}

技术分享图片

2、

#triangle03{
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-top: 50px solid blue;
    }
#triangle04{
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-right: 50px solid red;
    }
#triangle05{
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-bottom: 50px solid green;
    }
#triangle06{
    width: 0;
    height: 0;
    border: 50px solid transparent;
    border-left: 50px solid yellow;
    }

技术分享图片

 


 

如何用css画三角形

标签:ber   select   parent   top   class   com   alt   sel   order   

原文地址:https://www.cnblogs.com/Nancyegg/p/8651870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!