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

模块代码之CSS实现三角形

时间:2016-06-29 13:24:16      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:


HTML结构:
1 <div class="arrow-up">
2      <!--向上的三角-->
3 </div>

 CSS:

1 /*箭头向上*/
2 .arrow-up {
3     width:0; 
4     height:0; 
5     border-left:30px solid transparent;
6     border-right:30px solid transparent;
7     border-bottom:30px solid #fff;
8 }
1 /*箭头向下*/
2 .arrow-down {
3     width:0; 
4     height:0; 
5     border-left:20px solid transparent;
6     border-right:20px solid transparent;
7     border-top:20px solid #0066cc;
8 }
1 /*箭头向左*/
2 .arrow-left {
3     width:0; 
4     height:0; 
5     border-top:30px solid transparent;
6     border-bottom:30px solid transparent; 
7     border-right:30px solid yellow; 
8 }
1 /*箭头向右*/
2 .arrow-right {
3     width:0; 
4     height:0; 
5     border-top:50px solid transparent;
6     border-bottom: 50px solid transparent;
7     border-left: 50px solid green;
8 }

 

模块代码之CSS实现三角形

标签:

原文地址:http://www.cnblogs.com/shifan/p/5626456.html

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