This is my CSS
element.style {
background-image: url("photo.jpeg");
background-attachment: fixed;
background-size: cover;
background-position: 50% 66%;
}
The position of the photo remains (0% 0%) as if background-position
never existed. Anyone knows why this happens?
Also, if I use chrome and inspect the page, and edit any of the css it applies the background-position
. Say I untick the background-position
and tick it back on. It will apply the effect. I'm not sure why that happens, is it getting overridden or something?