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

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

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:15.平行四边形 #parallelogram{ width:150px; height:100px; transform:skew(20deg); background:red; } 16.星星 (6角) #star-six{ width:0; height:0; border-left:50pxsolidtransparent; border-right:50pxsolidt

15.平行四边形

  1. #parallelogram {  
  2. width: 150px;  
  3. height: 100px;  
  4. transform: skew(20deg);  
  5. background: red;  
  6. }  

16.星星 (6角)

  1. #star-six {  
  2. width: 0;  
  3. height: 0;  
  4. border-left: 50px solid transparent;  
  5. border-right: 50px solid transparent;  
  6. border-bottom: 100px solid red;  
  7. position: relative;  
  8. }  
  9. #star-six:after {  
  10. width: 0;  
  11. height: 0;  
  12. border-left: 50px solid transparent;  
  13. border-right: 50px solid transparent;  
  14. border-top: 100px solid red;  
  15. position: absolute;  
  16. content: "";  
  17. top: 30px;  
  18. left: -50px;  
  19. }  

17.星星 (5角)

  1. #star-five {  
  2. margin: 50px 0;  
  3. position: relative;  
  4. display: block;  
  5. color: red;  
  6. width: 0px;  
  7. height: 0px;  
  8. border-right: 100px solid transparent;  
  9. border-bottom: 70px solid red;  
  10. border-left: 100px solid transparent;  
  11. transform: rotate(35deg);  
  12. }  
  13. #star-five:before {  
  14. border-bottom: 80px solid red;  
  15. border-left: 30px solid transparent;  
  16. border-right: 30px solid transparent;  
  17. position: absolute;  
  18. height: 0;  
  19. width: 0;  
  20. top: -45px;  
  21. left: -65px;  
  22. display: block;  
  23. content: '';  
  24. transform: rotate(-35deg);  
  25. }  
  26. #star-five:after {  
  27. position: absolute;  
  28. display: block;  
  29. color: red;  
  30. top: 3px;  
  31. left: -105px;  
  32. width: 0px;  
  33. height: 0px;  
  34. border-right: 100px solid transparent;  
  35. border-bottom: 70px solid red;  
  36. border-left: 100px solid transparent;  
  37. transform: rotate(-70deg);  
  38. content: '';  
  39. }  

18.五边形

  1. #pentagon {  
  2. position: relative;  
  3. width: 54px;  
  4. box-sizing: content-box;  
  5. border-width: 50px 18px 0;  
  6. border-style: solid;  
  7. border-color: red transparent;  
  8. }  
  9. #pentagon:before {  
  10. content: "";  
  11. position: absolute;  
  12. height: 0;  
  13. width: 0;  
  14. top: -85px;  
  15. left: -18px;  
  16. border-width: 0 45px 35px;  
  17. border-style: solid;  
  18. border-color: transparent transparent red;  
  19. }  

(编辑:ASP站长网)

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