Skip to content

Instantly share code, notes, and snippets.

@marsen
Created August 6, 2014 06:00
Show Gist options
  • Save marsen/b05a3e5fc379caf9c0a1 to your computer and use it in GitHub Desktop.
Save marsen/b05a3e5fc379caf9c0a1 to your computer and use it in GitHub Desktop.
placeholder html
<!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