You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
background-image: url('../background.png');
it crashes.
The reason I want to add a background using CSS it's because I want to add gradient to it. background-image: url('../background.png'), linear-gradient(0deg, #5b4b87 0%, #222831 79%, #5a4b87 100%);
The text was updated successfully, but these errors were encountered:
i don't think it's a bug. i think you just make some mistake on your css code.
you don't need to insert picture manually with css, just pick your picture normally thru background setting (gear icon) and then add your css code.
if you want to pick picture manually, you need encode the picture into base64 format or put external link of picture, you can't insert the picture by put the picture path on your computer into your css code like you did. try this html { background: url(put your base64 picture or link of picture); }
if you want to add the gradient effect your can try to use html:before for your gradient css code.
background-image: url('../background.png');
it crashes.
The reason I want to add a background using CSS it's because I want to add gradient to it.
background-image: url('../background.png'), linear-gradient(0deg, #5b4b87 0%, #222831 79%, #5a4b87 100%);
The text was updated successfully, but these errors were encountered: