Skip to content
Advertisement

Divs not stacking, instead is overlapping

I am trying to stack a div containing buttons under another div that contains a flipbook created using turnjs. This is how the webpage looks like: https://imgur.com/a/Nwp3Mgi . I want to position the buttons under the flipbook, but it will overlap instead.

This is the html:

JavaScript

This is the css:

JavaScript

How do I ensure that the div containing the buttons will always be below the div containing the flipbook?

Advertisement

Answer

In your code, the buttonsDiv actually located under the flipbook, but you used top CSS to move the flipbook below its original location, so it looks like overlapping.

Instead of using top: 100px in CSS, use margin-top: 100px;

JavaScript

CSS explanations quoted from: https://www.w3schools.com/cssref/pr_pos_top.asp

CSS top property

The top property affects the vertical position of a positioned element. This property has no effect on non-positioned elements.

If position: relative; – the top property makes the element’s top edge to move above/below its normal position.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement