+ 3
can you set a background image to a div & have the background of the site fixed & the background of the div scroll?
3 Respostas
+ 2
body {
background-image: url("blabla.png");
background-repeat: no-repeat;
background-attachment: fixed;
}
div {
background-image:url(blabla2.png");
background-repeat: no-repeat;
background-attachment: scroll;
}
+ 2
Thanks
0
yxyxd
y
yyx