Created
August 6, 2014 06:00
-
-
Save marsen/b05a3e5fc379caf9c0a1 to your computer and use it in GitHub Desktop.
placeholder 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
<!DOCTYPE html> | |
<html> | |
<head runat="server"> | |
<title></title> | |
<style> | |
input:focus::-webkit-input-placeholder { color:transparent; } | |
input:focus:-ms-input-placeholder { color:transparent; } | |
input:focus::-moz-placeholder { color:transparent; } /* FF 4-18 */ | |
input:focus:-moz-placeholder { color:transparent; } /* FF 19+ */ | |
</style> | |
</head> | |
<body> | |
<input type="text" name="fname" placeholder="First name"><br> | |
<input type="text" name="lname" placeholder="Last name"><br> | |
<input type="submit" value="Submit"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment