Skip to content

Instantly share code, notes, and snippets.

@RiodeJaneiroo
Last active August 17, 2016 04:00
Show Gist options
  • Save RiodeJaneiroo/f93c61cda0fb6e64b0e713affb87523d to your computer and use it in GitHub Desktop.
Save RiodeJaneiroo/f93c61cda0fb6e64b0e713affb87523d to your computer and use it in GitHub Desktop.
css rules for input placeholder
input::-webkit-input-placeholder {
font-weight: 400;
font-size: 16px;
}
input::-moz-placeholder {
font-weight: 400;
font-size: 16px;
}
input:-moz-placeholder {
font-weight: 400;
font-size: 16px;
}
input:-ms-input-placeholder {
font-weight: 400;
font-size: 16px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment