• css 画三角形


    <div class='triangle-rihgt'></div>
    <div class='triangle-top'></div>
    <div class='triangle-left'></div>
    <div class='triangle-bottom'></div>
    
    .triangle-rihgt{
    	 0;
    	height: 0;
    	border-bottom:10px solid  transparent;
    	border-top:10px solid  transparent;
            border-left: 20px solid  red;
    }
    .triangle-left{
    	 0;
    	height: 0;
    	border-bottom:10px solid  transparent;
            border-top:10px solid  transparent;
    	border-right: 20px solid  green;
    }
    .triangle-top{
    	 0;
    	height: 0;
    	border-right:10px solid  transparent;
    	border-left:10px solid  transparent;
    	border-bottom: 20px solid  #333;
    }
    .triangle-bottom{
    	 0;
    	height: 0;
    	border-right:10px solid  transparent;
    	border-left:10px solid  transparent;
    	border-top: 20px solid  #999;
    }
    

      

    css三角形

     
     
     
     
  • 相关阅读:
    【BZOJ 2324】 [ZJOI2011]营救皮卡丘
    【BZOJ 2809】 [Apio2012]dispatching
    网络流小结
    复活
    终结
    11.7模拟赛
    codevs 2173 忠诚
    P3386 【模板】二分图匹配
    Leetcode 大部分是medium难度不怎么按顺序题解(上)
    ATP的新博客!
  • 原文地址:https://www.cnblogs.com/Enid0044/p/8474168.html
Copyright © 2020-2023  润新知