Les sauts de ligne dans le tableau html

Comment puis-je arrêter ma table de l'augmentation de la largeur à chaque fois que j'insère loooong commentaire?

J'ai fait un exemple simple :

<!DOCTYPE html>
<html>
    <body>
        <table width='350'  border="0" align="center" cellpadding="3" cellspacing="1" class="table">
            <tr>
                <th id="row_style" bgcolor='#D6D6D6'>ID</th>
                <th id="row_style" width= "50%" bgcolor='#D6D6D6'>Content</th>
                <th id="row_style" bgcolor='#D6D6D6'>Date</th>
            </tr>
            <tr>
                <td id="row_style" bgcolor='#3399FF' scope='col' width='50'>Example</td>td>
                <td id="row_style" width ='10%'> Content</td>td>
                <td id="row_style" bgcolor='#3399FF' scope='col' width ='10%'>Example</td>td>
                <td width ='10%'></td>
            </tr>
        </table>
    </body>
</html>

Quand j'augmente le mot "contenu" de la largeur de la table est en augmentation.. comment puis-je arrêter cette et insérer un saut de ligne?

OriginalL'auteur Ion Farima | 2013-01-05