Skip to content

Instantly share code, notes, and snippets.

@ciases
Created July 26, 2016 09:19
Show Gist options
  • Save ciases/474b8d195df8207ae613e2259aca6798 to your computer and use it in GitHub Desktop.
Save ciases/474b8d195df8207ae613e2259aca6798 to your computer and use it in GitHub Desktop.
Bootstrap input type file
<style>
.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;
}
</style>
<span class="btn btn-default btn-file">
Browse <input type="file">
</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment