Copy link to clipboard
Copied
I realize this topic has been repeated several times, but despite having reviewed many discussions and web pages on the subject I've not been able to figure out why mine isn't working, so I'm looking for help.
Here is my relevant code:
CSS:
@charset "utf-8";
/* CSS Document */
p {
font-family:Arial;
font-size:25px;
color:#000;
}
1 Correct answer

The default parser doesn't like the charset decl in css:
@charset "utf-8";
Remove line from the file and you should be ok. Alternatively, you could write your own parser -- or strip the declaration out.

Copy link to clipboard
Copied
The default parser doesn't like the charset decl in css:
@charset "utf-8";
Remove line from the file and you should be ok. Alternatively, you could write your own parser -- or strip the declaration out.
Copy link to clipboard
Copied
Fabulous!! Thank you.

Copy link to clipboard
Copied
You're welcome.

