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

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

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:44.指示器 #pointer{ width:200px; height:40px; position:relative; background:red; } #pointer:after{ content:; position:absolute; left:0; bottom:0; width:0; height:0; border-left:20pxsolidwhite; border

44.指示器

  1. #pointer {  
  2. width: 200px;  
  3. height: 40px;  
  4. position: relative;  
  5. background: red;  
  6. }  
  7. #pointer:after {  
  8. content: "";  
  9. position: absolute;  
  10. left: 0;  
  11. bottom: 0;  
  12. width: 0;  
  13. height: 0;  
  14. border-left: 20px solid white;  
  15. border-top: 20px solid transparent;  
  16. border-bottom: 20px solid transparent;  
  17. }  
  18. #pointer:before {  
  19. content: "";  
  20. position: absolute;  
  21. right: -20px;  
  22. bottom: 0;  
  23. width: 0;  
  24. height: 0;  
  25. border-left: 20px solid red;  
  26. border-top: 20px solid transparent;  
  27. border-bottom: 20px solid transparent;  
  28. }  

45.锁

  1. #lock {  
  2. font-size: 8px;  
  3. position: relative;  
  4. width: 18em;  
  5. height: 13em;  
  6. border-radius: 2em;  
  7. top: 10em;  
  8. box-sizing: border-box;  
  9. border: 3.5em solid red;  
  10. border-right-width: 7.5em;  
  11. border-left-width: 7.5em;  
  12. margin: 0 0 6rem 0;  
  13. }  
  14. #lock:before {  
  15. content: "";  
  16. box-sizing: border-box;  
  17. position: absolute;  
  18. border: 2.5em solid red;  
  19. width: 14em;  
  20. height: 12em;  
  21. left: 50%;  
  22. margin-left: -7em;  
  23. top: -12em;  
  24. border-top-left-radius: 7em;  
  25. border-top-right-radius: 7em;  
  26. }  
  27. #lock:after {  
  28. content: "";  
  29. box-sizing: border-box;  
  30. position: absolute;  
  31. border: 1em solid red;  
  32. width: 5em;  
  33. height: 8em;  
  34. border-radius: 2.5em;  
  35. left: 50%;  
  36. top: -1em;  
  37. margin-left: -2.5em;  

(编辑:ASP站长网)

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