Tag footer at browser boundary

Asked

Viewed 57 times

3

I have a footer tag on my HTML page that calls the Bootstrap panel-footer class. I would like to leave this footer at the browser limit open and compliant and not at the limit of the content on the page.

<footer class="panel-footer">
        ....           
</footer>

Any suggestions ?

  • Puts position: fixed in the CSS in this element.

1 answer

2


.panel-footer{
    position: fixed;
    bottom: 0;
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.