Footer at bottom but not fixed

How to create footer at the bottom but not fixed. 

Yes, it's possible with CSS. When content will come more then footer will go to the down with scrolling. We are using position property of the CSS. Here is the most important thing is height property as we using in the body and HTML element. And also minimum height depends on the main container of the content should be 100%.

HTML Code:

<main>

        <div class="content">

            Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
            text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen
            book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially
            unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages,
            and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br><br>            Lorem
            Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard
            dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type
            specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining
            essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum
            passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem
            Ipsum.<br><br>
        </div>
        <footer>
            footer text
        </footer>
    </main>
 

CSS Code: 

<style>

        html, body {

            margin: 0;
            padding: 0;
            height: 100%;
        }
        main {
            min-height: 100%;
            position: relative;
        }
        .content {
            padding: 10px;
            padding-bottom: 40px;
        }
        footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 15px 0;
            background: #eee;
            text-align: center
        }
    </style>
 

No comments:

Note: Only a member of this blog may post a comment.

Copyright Reserved to Anything Learn. Powered by Blogger.