设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 文件
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

45个值得收藏的CSS形状(2)

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:9.左上角 #triangle-topleft{ width:0; height:0; border-top:100pxsolidred; border-right:100pxsolidtransparent; } 10.右上角 #triangle-topright{ width:0; height:0; border-top:100pxsolidred; border-left:1

9.左上角

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

10.右上角

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

11.左下角

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

12.右下角

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

13.箭头

  1. #curvedarrow {  
  2. position: relative;  
  3. width: 0;  
  4. height: 0;  
  5. border-top: 9px solid transparent;  
  6. border-right: 9px solid red;  
  7. transform: rotate(10deg);  
  8. }  
  9. #curvedarrow:after {  
  10. content: "";  
  11. position: absolute;  
  12. border: 0 solid transparent;  
  13. border-top: 3px solid red;  
  14. border-radius: 20px 0 0 0;  
  15. top: -12px;  
  16. left: -9px;  
  17. width: 12px;  
  18. height: 12px;  
  19. transform: rotate(45deg);  
  20. }  

14.梯形

  1. #trapezoid {  
  2. border-bottom: 100px solid red;  
  3. border-left: 25px solid transparent;  
  4. border-right: 25px solid transparent;  
  5. height: 0;  
  6. width: 100px;  
  7. }  

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读