web-dev-qa-db-fra.com

Comment puis-je centrer mon pied de page au bas de la page?

Je ne parviens pas à centrer mon pied de page au bas de la page. Voici mon code

footer {
background-color: #FFF;
position:fixed;
bottom: 0px;
width: 400px;
text-align: center;
}
<footer align="center">
    <p>March 25, 2</p>
</footer>
9
Diallo Dickerson

Il suffit de régler la largeur à 100%

width: 100%;
14
Nasir Mahmood

Shabbir Lakdawala answer est l'une de vos options, mais vous avez un élément floated dans votre footer, il vous suffit d'ajouter le code "div" 

html

<div class="footerWrap">
    <div class="footer">
      <div class="footerContent">
        <p>Lorem Ipsum dolor</p>
      </div>     
    </div>
</div>

css

.footerWrap {
    width:100%;
    position:fixed;
    bottom: 0px;
}
.footer {
    width:400px;
    margin:auto;
}
.footerContent {
    float:left;
    width:100%;
    background-color:#555;
    padding:20px 0;
}
.footer p {float:left; width:100%; text-align:center; }

travailler demo

1
jhunlio

OU Vous pouvez donner à votre pied de page un conteneur et appliquer ce code:

HTML:

<footer>
    <div class="footer">
    lorem ipsum dolor
    </div>
<footer>

CSS:

footer{
    bottom: 0;
    position: fixed;
    width: 100%;
}

.footer {
    background: blue;
    height: 100px;
    margin: auto;
    width: 400px;
    text-align:center;
    padding:10px;
    color:#ffffff;
}

Lien vers le Fiddle: http://jsfiddle.net/qdVbR/174/

0
Shabbir Lakdawala