8
votes

5 Réponses :


7
votes
html, body{
    margin: 0;
    padding: 0;

    min-width: 100%;
    width: 100%;
    max-width: 100%;

    min-height: 100%;
    height: 100%;
    max-height: 100%;
}
This Css will help you to set height 100% for every page.

0 commentaires


0
votes

Essayez d'utiliser JavaScript:

$(window).bind('resize', yourclassname);


0 commentaires

9
votes

Vous pouvez utiliser la hauteur ViewPort.

height: 100vh


0 commentaires

0
votes

Vous pouvez également utiliser la propriété code> ici, pour le support croisé de navigateur.

    html {
    width:100%;
    height: 100%;
    display: table;
    }

    body {
        width:100%;
        display:table-cell;
    }

    html, body {
        margin: 0px;
        padding: 0px;
    }


0 commentaires