Skip to content

Instantly share code, notes, and snippets.

@gemmadlou
Last active June 13, 2016 15:50
Show Gist options
  • Save gemmadlou/efae034c2d53a78ea10224527e580b37 to your computer and use it in GitHub Desktop.
Save gemmadlou/efae034c2d53a78ea10224527e580b37 to your computer and use it in GitHub Desktop.
File Upload Button with Bootstrap
<label class="btn btn-default btn-file">
Browse <input type="file" style="display: none;">
</label>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment