-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input placeholder in Firefox is visible #20
Comments
This issue is still occurring. Any updates? |
try adding class |
Well, acording to https://developer.mozilla.org/en-US/docs/Web/CSS/::-moz-placeholder |
Should be resolved as outdated I believe, I cannot reproduce in current Firefox. |
Funny: .form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
} (bootstrap.css:2560) |
Works also with additional
|
The input placeholder is visible in Firefox
when not in focus
The text was updated successfully, but these errors were encountered: