Bonjour,
Pouvez-vous me dire où est mon erreur?
J'ai un fichier css contenant les style à appliquer à mon tableau.
Voici le code css :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
#Droite {
	white-space: nowrap;
	width: 198px;
	height: 100%;
}
#Centre {
	white-space:nowrap;
	background-color:#9999CC;
	height: 100%;
	width: auto;
}
#Gauche {
	width: 168px;
	height: 100%;
	white-space: nowrap;	
	vertical-align: top;
}
Code HTML :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
<table border="1">
	<tr>
		<td id="Gauche">Texte1
		</td>
		<td id="Centre">Texte2
		</td>
		<td id="Droite">Texte3
		</td>
	</tr>
</table>
Que dois-je faire ?