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

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

发布时间:2019-04-23 11:15 所属栏目:21 来源:前端小智
导读:39.月亮 #moon{ width:80px; height:80px; border-radius:50%; box-shadow:15px15px00red; } 40.旗 #flag{ width:110px; height:56px; box-sizing:content-box; padding-top:15px; position:relative; background:r

39.月亮

  1. #moon {  
  2. width: 80px;  
  3. height: 80px;  
  4. border-radius: 50%;  
  5. box-shadow: 15px 15px 0 0 red;  
  6. }  

40.旗

  1. #flag {  
  2. width: 110px;  
  3. height: 56px;  
  4. box-sizing: content-box;  
  5. padding-top: 15px;  
  6. position: relative;  
  7. background: red;  
  8. color: white;  
  9. font-size: 11px;  
  10. letter-spacing: 0.2em;  
  11. text-align: center;  
  12. text-transform: uppercase;  
  13. }  
  14. #flag:after {  
  15. content: "";  
  16. position: absolute;  
  17. left: 0;  
  18. bottom: 0;  
  19. width: 0;  
  20. height: 0;  
  21. border-bottom: 13px solid #eee;  
  22. border-left: 55px solid transparent;  
  23. border-right: 55px solid transparent;  
  24. }  

41.圆锥

  1. #cone {  
  2. width: 0;  
  3. height: 0;  
  4. border-left: 70px solid transparent;  
  5. border-right: 70px solid transparent;  
  6. border-top: 100px solid red;  
  7. border-radius: 50%;  
  8. }  

42.十字架

  1. #cross {  
  2. background: red;  
  3. height: 100px;  
  4. position: relative;  
  5. width: 20px;  
  6. }  
  7. #cross:after {  
  8. background: red;  
  9. content: "";  
  10. height: 20px;  
  11. left: -40px;  
  12. position: absolute;  
  13. top: 40px;  
  14. width: 100px;  
  15. }  

43.根基

  1. #base {  
  2. background: red;  
  3. display: inline-block;  
  4. height: 55px;  
  5. margin-left: 20px;  
  6. margin-top: 55px;  
  7. position: relative;  
  8. width: 100px;  
  9. }  
  10. #base:before {  
  11. border-bottom: 35px solid red;  
  12. border-left: 50px solid transparent;  
  13. border-right: 50px solid transparent;  
  14. content: "";  
  15. height: 0;  
  16. left: 0;  
  17. position: absolute;  
  18. top: -35px;  
  19. width: 0;  
  20. }  

(编辑:ASP站长网)

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