Sticky Footer Issues

I managed to create my layout so that it has 2 columns and a width of 100%, you can see that here .

Now I'm trying to implement a sticky footer height (100%) with this layout, which also has a background in the right column that goes down the footer, as well as with the border that I have in the left column.

Is there a way to do this with my current layout, or is it great if someone could offer an alternative to the way I am doing it now!

Thank!

0
source share
2 answers
+4

CSS DIV, . , CSS :

body
{
 height: 100%;
}

.footer
{
 position: absolute;
 top: 90%;
 left: 0;
 height: 10%;
}
0

Source: https://habr.com/ru/post/1747769/


All Articles