Aligner texte avec css

Fermé
Profil bloqué - 17 août 2008 à 16:05
 Poplio - 17 août 2008 à 16:38
Bonjour,

J'aimerais centré mon texte grace au css donc j'ai fait ceci mais le problème c'est que ça ne fonctionne pas

Voici le ccs

[code]

.navigation {
color : #224061;
margin-top : 0px;
padding-bottom : 0px;
margin-bottom : 0px;
margin-left : 45px;
margin-right : 0px;
font-size : 11px;
font-family : Tahoma,Verdana,Arial;
font-weight: bold;
text-align: center;

}

.navigation a {
color : #000000;
text-decoration: none;

}

.navigation a:hover
{
text-decoration: underline;
color: #224061;

}

.navigation {
text-align:center;
}

[/code]

et voici ce que j'ai mis dans ma page html

[code]

<td height="45" width="100" background="images/accueil.jpg" class="menu02"style="margin-top: 11px;"><p class="menu01"><a href="accueil.html"><font class="navigation">Accueil</font></a></p></td>

[/code]


Merci d'avance

3 réponses

Profil bloqué
17 août 2008 à 16:32
super !

j'ai ajouter

.navigation{
margin: 0 auto;
}

et ça fonctionne

MERCI BEAUCOUP
1
essaye de rajouter

.menu1{
text-align:center;
}
.navigation{
margin: 0 auto;
}
0
de rien ^^
0