Hey @Stig_Ark
It’s possible to write css in a html embed code in webflow, just wrap your code into tags, like so :
<style>
.yourclass {
background: url(your-image-url) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>