Bonjour tout le monde
j'ai ajouté un tableau à ma page, et j'ai bien fixé la taille des cellules td,
résultat obtenu sur IE ou Firefox, un affichage qui n'est pas conforme avec ce que j'ai défini avant !!! et cela se reproduit lorsqu'il y a une chaine très longue.
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
19
20
21
22
23
24
25
26
27
28
29
30
 
<html>
	<head>
		<title>Test</title>
	</head>
	<body>
		<table width="100%" cellspacing="0" cellpadding="0" border="1">
			<tr>
				<td align="right" width="10%">
				<p>aaaaa</p>
				</td>
				<td width="20%" align="left">
				<p>bbbbb</p>
				</td>
				<td align="right" width="5%">
				<p>zzzzz</p>
				</td>
				<td width="25%" align="left">
				<p>yyyyyyyyy</p>
				</td>
				<td align="right" width="5%">
				<p>uuuuuuuu</p>
				</td>
				<td width="35%" align="left">
				<p>cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccchhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh</p>  
				</td>
			</tr>
		</table>
	</body>
</html>
Est ce qu'il y a une solution qui me permet d'avoir les chaînes longues en plusieurs lignes ?
Et merci