Put one div behind the other

2

I can not make it work at all. I'm using "animate.css" to make the animations of the elements appear, but when an element is rising, at the bottom of the page for example, all the content of that section goes over the footer, leaving an "ugly" effect. But I believe that if the footer was above the div, it would not be noticeable.

BasicallyIwantedthecontentto"exit behind" the footer. In css / html there is nothing much, just the animate class in the content, height of the blocks and color

    
asked by anonymous 08.01.2016 / 16:02

1 answer

4

Add a z-index value to your footer larger than the body that is passing over it.

This rule defines in which position of the Z axis its element will remain, the file with the highest value will always be on top of the others

footer{
    z-index:1000;
}
    
08.01.2016 / 16:24