Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <style type="text/css">
  2.         .file {
  3.                 position: relative;
  4.                 width: 12em;
  5.                 overflow: hidden;
  6.                 border: 1px solid black;
  7.                 }
  8.         .file label {
  9.                 width: 100%;
  10.                 color: #00f;
  11.                 text-decoration: underline;
  12.                 }
  13.         .file input {
  14.                 position: absolute;
  15.                 top: 0;
  16.                 right: 0;
  17.                 font-size: 10em;
  18.                 cursor: pointer;
  19.                 opacity: 0;
  20.                 -moz-opacity: 0;
  21.                 filter: alpha(opacity=0);
  22.                 }
  23. </style>
  24.  
  25. <div class="file">
  26.         <label>Upload a file</label>
  27.         <input type="file">
  28. </div>