footer tag at the browser border

3

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

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

Any suggestions?

    
asked by anonymous 18.01.2016 / 18:32

1 answer

2
.panel-footer{
    position: fixed;
    bottom: 0;
}
    
18.01.2016 / 18:42