博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
纯 CSS 绘制三角形(各种角度)
阅读量:5043 次
发布时间:2019-06-12

本文共 2594 字,大约阅读时间需要 8 分钟。

 

#triangle-up {
width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red;}

 

 

#triangle-down {
width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-top: 100px solid red;}

 

 

#triangle-left {
width: 0; height: 0; border-top: 50px solid transparent; border-right: 100px solid red; border-bottom: 50px solid transparent;}

 

#triangle-right {
width: 0; height: 0; border-top: 50px solid transparent; border-left: 100px solid red; border-bottom: 50px solid transparent;}

 

#triangle-topleft {
width: 0; height: 0; border-top: 100px solid red; border-right: 100px solid transparent;}

 

#triangle-topright {
width: 0; height: 0; border-top: 100px solid red; border-left: 100px solid transparent; }

 

#triangle-bottomleft {
width: 0; height: 0; border-bottom: 100px solid red; border-right: 100px solid transparent;}

 

#triangle-bottomright {
width: 0; height: 0; border-bottom: 100px solid red; border-left: 100px solid transparent;}

 

 

 

 

Triangle Up

 
 
1
2
3
4
5
6
7
#triangle-up {
    
width
0
;
    
height
0
;
    
border-left
50px 
solid 
transparent
;
    
border-right
50px 
solid 
transparent
;
    
border-bottom
100px 
solid 
red
;
}

   

Triangle Down

 
 
1
2
3
4
5
6
7
#triangle-down {
    
width
0
;
    
height
0
;
    
border-left
50px 
solid 
transparent
;
    
border-right
50px 
solid 
transparent
;
    
border-top
100px 
solid 
red
;
}

   

Triangle Left

 
 
1
2
3
4
5
6
7
#triangle-
left 
{
    
width
0
;
    
height
0
;
    
border-top
50px 
solid 
transparent
;
    
border-right
100px 
solid 
red
;
    
border-bottom
50px 
solid 
transparent
;
}

  

Triangle Right

 
 
1
2
3
4
5
6
7
#triangle-
right 
{
    
width
0
;
    
height
0
;
    
border-top
50px 
solid 
transparent
;
    
border-left
100px 
solid 
red
;
    
border-bottom
50px 
solid 
transparent
;
}

  

Triangle Top Left

 
 
1
2
3
4
5
6
#triangle-topleft {
    
width
0
;
    
height
0
;
    
border-top
100px 
solid 
red
;
    
border-right
100px 
solid 
transparent
;
}

  

Triangle Top Right

 
 
1
2
3
4
5
6
7
#triangle-topright {
    
width
0
;
    
height
0
;
    
border-top
100px 
solid 
red
;
    
border-left
100px 
solid 
transparent
;
 
}

  

Triangle Bottom Left

 
 
1
2
3
4
5
6
#triangle-bottomleft {
    
width
0
;
    
height
0
;
    
border-bottom
100px 
solid 
red
;
    
border-right
100px 
solid 
transparent
;
}

  

Triangle Bottom Right

 
 
1
2
3
4
5
6
#triangle-bottomright {
    
width
0
;
    
height
0
;
    
border-bottom
100px 
solid 
red
;
    
border-left
100px 
solid 
transparent
;
}

转载于:https://www.cnblogs.com/weiyanan/p/5435289.html

你可能感兴趣的文章
JDK JRE Java虚拟机的关系
查看>>
2018.11.20
查看>>
word20161215
查看>>
12th week blog
查看>>
dijkstra (模板)
查看>>
python小记(3)
查看>>
编译Linux驱动程序 遇到的问题
查看>>
大型分布式网站架构技术总结
查看>>
HDU 1017[A Mathematical Curiosity]暴力,格式
查看>>
[算法之美] KMP算法的直观理解
查看>>
EntityFramework 性能优化
查看>>
【ASP.NET开发】菜鸟时期的ADO.NET使用笔记
查看>>
android圆角View实现及不同版本号这间的兼容
查看>>
OA项目设计的能力③
查看>>
Cocos2d-x3.0 文件处理
查看>>
全面整理的C++面试题
查看>>
Activity和Fragment生命周期对比
查看>>
OAuth和OpenID的区别
查看>>
android 分辨率自适应
查看>>
查找 EXC_BAD_ACCESS 问题根源的方法
查看>>