• 如何用css画三角形


    1、
    #triangle02{ 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{
         0;
        height: 0;
        border: 50px solid transparent;
        border-top: 50px solid blue;
        }
    #triangle04{
         0;
        height: 0;
        border: 50px solid transparent;
        border-right: 50px solid red;
        }
    #triangle05{
         0;
        height: 0;
        border: 50px solid transparent;
        border-bottom: 50px solid green;
        }
    #triangle06{
         0;
        height: 0;
        border: 50px solid transparent;
        border-left: 50px solid yellow;
        }

    
    
     
  • 相关阅读:
    20191117-STD::讲解及求平均数例题
    计算机网络-ip分类
    游标cursor
    ajax
    django ORM
    urls
    templates
    views
    models
    setting
  • 原文地址:https://www.cnblogs.com/Nancyegg/p/8651870.html
Copyright © 2020-2023  润新知