Created
October 20, 2017 17:15
-
-
Save morenojavier/6eddcd262c478a7e94bfe66a2187bcff to your computer and use it in GitHub Desktop.
Cambio de estilo en un form a un input file con CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- HTML --> | |
<label for="file-upload" class="custom-file-upload"> | |
<i class="fa fa-cloud-upload"></i> Custom Upload | |
</label> | |
<input id="file-upload" type="file"/> | |
/* CSS */ | |
input[type="file"] { | |
display: none; | |
} | |
.custom-file-upload { | |
border: 1px solid #ccc; | |
display: inline-block; | |
padding: 6px 12px; | |
cursor: pointer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment