Created
August 15, 2014 13:01
-
-
Save Tom-Millard/1d5c08d1ec09ce054cc4 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/dohih/7
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.upload-button { | |
height : 30px; | |
overflow : hidden; | |
} | |
.upload-button label { | |
display : block; | |
padding : 5px 7px; | |
background-color : green; | |
cursor : pointer; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="upload-button"> | |
<label for="upload">Upload</label> | |
<input type="file" name="upload" id="upload"> | |
</div> | |
</body> | |
</html> |
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
.upload-button { | |
height : 30px; | |
overflow : hidden; | |
} | |
.upload-button label { | |
display : block; | |
padding : 5px 7px; | |
background-color : green; | |
cursor : pointer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment