Alors voilà j'ai un tableau tout bête mais rien à faire je ne peux pas controler sa largeur. Ce qui je passe c'est que j'ai du texte dedans qui est assez long et cela m'agrandit le tableau.

J'ai un gros le code suivant (désolé y a du php dedans)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
 
print"
<table border=5 >
  <tr bgcolor=BLACK>
       <td colspan=3 width=30%>
             <FONT COLOR=white>
             <CENTER>Nouveaux articles</CENTER>
             </font>
       </td>
  </tr>";
 
while($tableau=mysql_fetch_array($result))
{
      <tr bgcolor=#1A571B>";	 	
 
        <td>
          <FONT COLOR=WHITE>$tableau[titre_articles]</FONT>
        </td>
 
        <td>
            <FONT COLOR=WHITE>
            </FONT>
        </td>
 
        <td colsapan=0>
              <FONT COLOR=WHITE>$tableau[pseudo_articles]
        </td>";
        </FONT>        
 
      </tr>        
 
      <tr bgcolor=#FFFFB7>
 
       <td colspan=3  width=100>
          $tableau[contenu_articles]       
       </td>
 
     </tr>
 
          <tr bgcolor=#99CC33>
 
           <td colspan=2>
                <a href=commentaires1.php?id_articles=$tableau[id_articles]>
                $tableau[nb_commentaires]</a>
            </td>
 
            <td>
              <a href=ajout_com.php?id_art=$tableau[id_articles]>Ajouter un 
               commentaire</a>
           </td>
 
         </tr>
 
     <tr bgcolor=grey>	
 
     </tr>								
}
Comment obliger a respecter une largeur que j'aurais choisie ?

Merci à ceux ui pourrait m'aider