boxshadow-basic.html 222 B

123456789101112131415161718
  1. <!DOCTYPE HTML>
  2. <style>
  3. body {
  4. background-color: green;
  5. }
  6. #thediv {
  7. width: 300px;
  8. height: 100px;
  9. position: absolute;
  10. top: 20px;
  11. left: 20px;
  12. box-shadow: 3px 3px black;
  13. }
  14. </style>
  15. <div id="thediv">Foo</div>