boxshadow-fileupload.html 248 B

1234567891011121314151617181920212223
  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. box-shadow: 0px 250px black;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <input type="file" id="s" />
  17. </body>
  18. </html>