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

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

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:36.雪佛龙 #chevron{ position:relative; text-align:center; padding:12px; margin-bottom:6px; height:60px; width:200px; } #chevron:before{ content:''; position:absolute; top:0; left:0; height:100%; widt

36.雪佛龙

  1. #chevron {  
  2. position: relative;  
  3. text-align: center;  
  4. padding: 12px;  
  5. margin-bottom: 6px;  
  6. height: 60px;  
  7. width: 200px;  
  8. }  
  9. #chevron:before {  
  10. content: '';  
  11. position: absolute;  
  12. top: 0;  
  13. left: 0;  
  14. height: 100%;  
  15. width: 51%;  
  16. background: red;  
  17. transform: skew(0deg, 6deg);  
  18. }  
  19. #chevron:after {  
  20. content: '';  
  21. position: absolute;  
  22. top: 0;  
  23. right: 0;  
  24. height: 100%;  
  25. width: 50%;  
  26. background: red;  
  27. transform: skew(0deg, -6deg);  
  28. }  

37.放大镜

  1. #magnifying-glass {  
  2. font-size: 10em;  
  3. display: inline-block;  
  4. width: 0.4em;  
  5. box-sizing: content-box;  
  6. height: 0.4em;  
  7. border: 0.1em solid red;  
  8. position: relative;  
  9. border-radius: 0.35em;  
  10. }  
  11. #magnifying-glass:before {  
  12. content: "";  
  13. display: inline-block;  
  14. position: absolute;  
  15. right: -0.25em;  
  16. bottom: -0.1em;  
  17. border-width: 0;  
  18. background: red;  
  19. width: 0.35em;  
  20. height: 0.08em;  
  21. transform: rotate(45deg);  
  22. }  

38.Facebook图标

  1. #facebook-icon {  
  2. background: red;  
  3. text-indent: -999em;  
  4. width: 100px;  
  5. height: 110px;  
  6. box-sizing: content-box;  
  7. border-radius: 5px;  
  8. position: relative;  
  9. overflow: hidden;  
  10. border: 15px solid red;  
  11. border-bottom: 0;  
  12. }  
  13. #facebook-icon:before {  
  14. content: "/20";  
  15. position: absolute;  
  16. background: red;  
  17. width: 40px;  
  18. height: 90px;  
  19. bottom: -30px;  
  20. right: -37px;  
  21. border: 20px solid #eee;  
  22. border-radius: 25px;  
  23. box-sizing: content-box;  
  24. }  
  25. #facebook-icon:after {  
  26. content: "/20";  
  27. position: absolute;  
  28. width: 55px;  
  29. top: 50px;  
  30. height: 20px;  
  31. background: #eee;  
  32. right: 5px;  
  33. box-sizing: content-box;  
  34. }  

(编辑:ASP站长网)

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