Skip to content

Instantly share code, notes, and snippets.

@AliMD
Created September 21, 2012 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliMD/3759919 to your computer and use it in GitHub Desktop.
Save AliMD/3759919 to your computer and use it in GitHub Desktop.
Placeholder style trick

Placeholder style trick

<!DOCTYPE HTML>
<html lang="en-US">
<head>
	<meta charset="UTF-8" />
	<title></title>
	<style type="text/css">
		input::-webkit-input-placeholder {
			color:lightseagreen;
		}
		input:-moz-placeholder {
			color:lightseagreen;
		}
	</style>
</head>
<body>
	<form action="">
		<input type="text" placeholder="Search ..." />
	</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment