je n'arrive pas à centrer verticalement le texte dans la cellule... voici le code... quelqu'un peut-il me dire où ça "cloche"... merci...
Code : Tout sélectionner
<HEAD>
<style type="text/css">
h1{font-style: italic;
font-family: times new roman;
color: green;
font-size: 20px;
text-align: center;
}
#Positionnement{position: absolute;
left: 50px;
top: 100px;
width: 200px;
height: 0px;
background-color:white;
}
</style>
</HEAD>
<BODY>
<TABLE BORDER=2 BGCOLOR="#COCOCO" ALIGN=center BORDERCOLOR="red" CELLSPACING=4>
<TR>
<TD id="Positionnement"><h1>TITRE</h1></TD>
</TR>
</TABLE>
</BODY>