Hello I have a little problem with fixed background in CSS. I need to fix it to the left corner.
https://i.stack.imgur.com/Q5hhT.jpg
background: url('./images/coura.png') no-repeat fixed;
width: 451px;
height: 736px;
position: fixed;
background-attachment: left bottom;
Is there any way how to do it? Thank you for your answers!
Another way is to set the background position to
bottom leftlike this:background: url('./images/coura.png') bottom left no-repeat fixed;