J'ai un code HTML comme ceci:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title></title>
</head>
<body>
<table style="width:100%;">
<tr>
<td>
<table style="width:100%; max-width:1000px; background:#000099;">
<tr>
<td>
001
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Le problème est que Chrome et Safari ignorent "max-width:1000px"
Mon ami a découvert que nous pouvons le prévenir en ajoutant "display:block"
à la table interne, et cela fonctionne d’une manière ou d’une autre.
Ce que je veux savoir, c'est: existe-t-il d'autres moyens de résoudre ce problème et pourquoi cela se produit-il?