Skip to content

Instantly share code, notes, and snippets.

@bradfrost
Created March 19, 2012 05:24
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bradfrost/2096790 to your computer and use it in GitHub Desktop.
Save bradfrost/2096790 to your computer and use it in GitHub Desktop.
Center aligned placeholder text
/**
* Center aligned placeholder text
*/
input {
box-sizing: border-box;
width: 100%;
padding: 1em;
border: 0.15em solid #808080;
border-radius: 0.5em;
text-align: center;
}
::-webkit-input-placeholder {
color: #808080;
text-align: center;
}
:-moz-placeholder {
color: #808080;
text-align: center;
}
<form>
<input placeholder="Oh placeholder text, you sick son of a bitch" />
</form>
{"view":"split","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment