HTML 5 Footer tag be always at bottom

后端 未结 6 530
挽巷
挽巷 2021-01-31 20:07

I am developing a site in HTML 5. I wrap all my footer content in footer tag. Like code below





<         


        
6条回答
  •  太阳男子
    2021-01-31 20:27

    This should get you where you are looking to go: (edited to add extra line so that code markup will show good)

    The basic HTML:

    col1
    col1
    col1

    Here is the CSS:

    html {
        position: relative;
        min-height: 100%;
    }
    
    body {
        margin: 0 0 100px; /* bottom = footer height */
    }
    
    footer {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 100px;
        width: 100%;
        background-color: #949494;
        color: #ffffff;
    }
    
    .colwrapper{
        -moz-column-count:3; /* Firefox */
        -webkit-column-count:3; /* Safari and Chrome */
        column-count:3;
    }
    
    /* Specify a 40 pixels gap between the columns: */
    -moz-column-gap:40px; /* Firefox */
    -webkit-column-gap:40px; /* Safari and Chrome */
    column-gap:40px;
    
    /* Specify the width, style and color of the rule between columns: */
    
    -moz-column-rule:3px outset #ff00ff; /* Firefox */
    -webkit-column-rule:3px outset #ff00ff; /* Safari and Chrome */
    column-rule:3px outset #ff00ff;
    }
    

提交回复
热议问题