
I mostly use Chrome, but I recently installed firefox and took a look at the sheet I am developing, there were a few discrepancies, that were mostly easy to fix. Except one. I have the following css that works perfectly in chrome. input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="text"]:read-only,
input[type="number"]:read-only {
display: inline-block;
background-color: blue;
color: white;
} None of my read-only fields are colored to indicate they are locked! they all look exactly like the input fields! I read some very old articles that say that I need -moz-read-only for firefox, but I have tried that and a dozens of other things, but nothing whatsoever styles those fields. The fields are locked and read-only, they just don't look any different from the unlocked fields. Any ideas? Thanks.