monolith
monolith copied to clipboard
Converting CSS with the wrong encoding
Not really an issue, just a note --
The embedded styles didn't apply to my page until I added the type attribute with encoding, like this:
<link rel="stylesheet" href="/assets/styles.css" type="text/css; charset=utf-8"/>
I think that browsers require that when loading CSS from embedded data? The CSS was encoding correctly, but the browser didn't know how to interpret it during render.
Very interesting... I will look into that and make sure it's fixed. Thank you for reporting this.