views:

47

answers:

3

Hello, I have the CSS setting:

.missing textarea {background-color: #fffcc !important;}

And the html looks like so:

<div id="label-add" class="jscript xtra-box sub-question missing">
<p>Additional Health Care Instructions</p>
<textarea id="addrule" name="addrule"></textarea>
</div>

It uses the XHTML 1.0 transitional DOCTYPE.
And, I've tried in FF and Chrome, and I'm not getting the textarea's background-color; it's not even showing up as overwritten in the debug console...

+1  A: 

Your hex colour definition has only five digits. Can you try a full one with six?

Everything else looks in order to me.

Pekka
+1  A: 

The color is missing a char. "#fffcc" needs one more char.

OcuS
Thank you~! >.> stupid mistake
Rixius
+1  A: 

#fffcc is missing one character

code-zoop