I changed the font color of the input field placeholder to blue, I tested it in Chrome, its color is blue. But in FF 23.0.1, color is a bit โlighterโ than blue.
See contrast below, note that โMonthโ is within range, and the color is also blue:
In Chrome, this is great, see below:

However, in firefox 23.0.1 it looked like this:

In IE8 it does not display:

Pay attention to the color difference.
Below is the css code I'm using:
.month_span { color: blue; } .input::-webkit-input-placeholder { color:blue} .input::-moz-placeholder { color:blue; } /* FF 19+ */ .input:-moz-placeholder { color:#bbb; } /* FF 18- */ .input:-ms-input-placeholder { color:#bbb; }
My question is: 1. Why is the color lighter in FF? 2. How to display placeholder value in IE?
html css firefox google-chrome internet-explorer
Javascript
source share