bonsoir,
Je voudrais centre un text dans une images.
Le HTML
et le CSS
Je voudrais centre un text dans une images.
Le HTML
<footer>
<div class="pied">
<p1>Copyright TC Lyrois @2012 - Tous droits réservés</p1>
</div>
</footer>
et le CSS
p1 {
font-family: Arial;
font-size: 11px;
color: white;
}
.pied {
background-color: #ffffff;
background-image: url(pictures/banniere_bas_popup.jpg);
background-position: center center;
background-repeat: no-repeat;
position: relative;
left: 50%;
width : 420px;
height : 37px;
margin-left: -210px;
text-align: center;
}
.pied p1 {
vertical-align: middle; display: inline;
}