boxshadow-fileupload-ref.html 360 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML>
  2. <html><head>
  3. <style>
  4. #s {
  5. position: absolute;
  6. top: 20px;
  7. left: 20px;
  8. display: block;
  9. width: 400px;
  10. height: 150px;
  11. }
  12. #p {
  13. background-color: black;
  14. width: 400px;
  15. height: 150px;
  16. position: absolute;
  17. top: 270px;
  18. left: 20px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <input type="file" id="s" />
  24. <div id="p">&nbsp;</div>
  25. </body>
  26. </html>