I have one form having input[type="number"]
.
Placeholder shows reduced opacity on browsers.
I want to show opacity:1
for input placeholders.
It is showing correct for input[type="text"]
but not for input[type="number"]
.
Not getting why is it so.
CSS:
input::-moz-placeholder{
opacity: 1
}
textarea::-moz-placeholder{
opacity: 1
}
Can anyone help me?