boxshadow-inset-large-border-radius.html 501 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. #boxShadow {
  6. background: gray;
  7. width: 700px;
  8. height: 20px;
  9. box-shadow: 15px 15px 3px black inset;
  10. border-radius: 100px 0px 0px 0px;
  11. }
  12. #cutLeft {
  13. background: white;
  14. width: 125px;
  15. height: 20px;
  16. position: absolute;
  17. }
  18. #cutAcross {
  19. background: white;
  20. width: 700px;
  21. height: 15px;
  22. position: absolute;
  23. margin-top: 5px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="cutLeft"></div>
  29. <div id="cutAcross"></div>
  30. <div id="boxShadow"></div>
  31. </body>
  32. </html>