+ 2
Why isn't this code working?
4 Respuestas
+ 2
The color is not appearing.
+ 2
You added code from a website (email, etc) that embeds (non-breaking spaces) and that stops CSS processing.
Go to: http://www.asciitohex.com
paste your CSS. Tap [Convert]. Scroll down to "HTML Entities"
Though I reported this a while ago as a possible bug, it's code you aren't retyping. To fix this, you have to wipe out all of them and use normal whitespace.
+ 2
Q&A test...confirmed. The first CSS has embedded -- I deleted the whitespace by hand and typed 4 spaces. You can copy this post's text to confirm.
********** Broken CSS
th {
background-color: #A7C942;
color: #ffffff;
}
********** Working CSS
th {
background-color: #A7C942;
color: #ffffff;
}
+ 1
What's the problem? Seems to work for me.