boxshadow-large-offset.html 721 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html>
  3. <style>
  4. .test {
  5. background-color: #fec;
  6. display: inline-block;
  7. width: 800px;
  8. height: 800px;
  9. }
  10. .second {
  11. box-shadow: inset 0 400px 1px 0px red;
  12. }
  13. .leftCut {
  14. position: absolute;
  15. margin-left: 0px;
  16. margin-top: 0px;
  17. width: 10px;
  18. height: 800px;
  19. background-color: black;
  20. }
  21. .rightCut {
  22. position: absolute;
  23. margin-left: 790px;
  24. margin-top: 0px;
  25. width: 10px;
  26. height: 800px;
  27. background-color: black;
  28. }
  29. .centerCut {
  30. position: absolute;
  31. margin-top: 395px;
  32. width: 800px;
  33. height: 20px;
  34. background-color: black;
  35. }
  36. </style>
  37. <body>
  38. <div class="leftCut"></div>
  39. <div class="rightCut"></div>
  40. <div class="centerCut"></div>
  41. <div class="test second"></div>
  42. </body>
  43. </html>