HTMLでテーブルを使用してビンゴカードを作成しました。 2番目の列では、I
という文字を使用すると、列のサイズが自動的に縮小され、他の文字を使用すると、列のサイズが正常に戻ります。なぜそれが起こっているのですか?奇妙なHTMLテーブルエラー
(2列目でI
を使用して)表の画像:(2列目でA
を使用して)http://imageshack.us/photo/my-images/21/18575712.png/
表イメージ:http://imageshack.us/photo/my-images/580/11014314.png/
<html>
<head>
<title>Bingo Card</title>
</head>
<body>
<h2>Bingo Card</h2>
<table border="1px" width="50%">
<tr>
<th>B</th>
<th>A</th>
<th>N</th>
<th>G</th>
<th>O</th>
</tr>
<tr>
<td id="square0"> </td>
<td id="square1"> </td>
<td id="square2"> </td>
<td id="square3"> </td>
<td id="square4"> </td>
</tr>
<tr>
<td id="square5"> </td>
<td id="square6"> </td>
<td id="square7"> </td>
<td id="square8"> </td>
<td id="square9"> </td>
</tr>
<tr>
<td id="square10"> </td>
<td id="square11"> </td>
<td id="square12"> </td>
<td id="square13"> </td>
<td id="square14"> </td>
</tr>
<tr>
<td id="square15"> </td>
<td id="square16"> </td>
<td id="square17"> </td>
<td id="square18"> </td>
<td id="square19"> </td>
</tr>
<tr>
<td id="square20"> </td>
<td id="square21"> </td>
<td id="square22"> </td>
<td id="square23"> </td>
<td id="square24"> </td>
</tr>
</table>
</body>
</html>
FirefoxとChromeで確認しました。 – sandbox
あなたはそれを解決したいのですか正確な理由を欲しいですか – Prabhavith
@Prabhavith両方 – sandbox