how to create floating Web page? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

how to create floating Web page?

we have an image on the back and we can have content on the other layer just above it on the same page

1st Jul 2016, 4:11 PM
Sangapalli Tarun Naga Sai Shashank
Sangapalli Tarun Naga Sai Shashank - avatar
1 Answer
+ 2
Tarun, by floating, you mean one part scrolling and the others not? If yes, then check out this from ZinC: For the background, use CSS: body { background-position: fixed; } If you want an object not to follow the rest of the page, also use CSS :) fixed positioning: div { position: fixed; top: 0; right: 0; }
1st Jul 2016, 4:13 PM
Daniel Chukwuji
Daniel Chukwuji - avatar