I have 3 divs that belong to the stackContainer class:
.stackContainer {
position: relative;
}
Within these divs, I want multiple elements stacked on top of each other. To achieve this, I use the following code:
.stackItem {
position: absolute;
}
The only issue is that the 3 stackContainers should not be stacked on top of each other. It seems like a minor CSS adjustment is needed.