Background-attachment: fixed is not working in Bootstrap Studio.
Well, sometimes when bootstrap studio's latest version comes some bugs give the designer problems for some time until the bugs are not fixed. Recently my student asked me this question regarding the background attachment: fixed is not working so how ...
houseofkaran.space1 min read
SandrineM72
I started to use BSS recently. Unfortunately I was unable to use "background-attachment: fixed;" as BSS would only accept "initial" or "inherit", but not "fixed" as a value.
I finally found the solution :
element.style {
background: url("nuage.jpg") center / cover no-repeat fixed;
}
"fixed" seems to be a value for the background property, but not for the background-attachment property
I tried it on 2 different designs and it works. ;)