-1
見出しなしで、私のテーブルは正常に見えます。私はテーブルの見出しを追加しようとしたが、それはすべての場所を押し込んだ。誰も私にこれを避ける方法を教えてもらえますか?テーブルの見出しがテーブルの行を外に押し出しているのはなぜですか?
関連するコード:
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="white">
<th width="80%"> Let's talk about the wall </th>
<tr>
<td width="6%" align="center" bgcolor="white"><font face="arial"><strong></strong></font></td>
<td width="75%" align="center" bgcolor="white"><font face="arial"><strong></strong></font></td>
<td width="19%" align="center" bgcolor="white"><font face="arial"><strong></strong></font></td>
</tr>
そして:
<tr>
<td bgcolor="white"><font face="arial"></font></td>
<td bgcolor="white"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><font face="arial"><? echo $rows['topic']; ?></a><BR></font></td>
<td align="center" bgcolor="white"><font face="arial"></font></td>
</tr>
、あなたがこのような 'テスト、' 'slaaa、' などのように表示されるテキスト明確にします - 私はそれが座っている場所の左にずっと遠くに揃えておきたい。それは見出しなしのテーブルを持っているときの座り方だ。
あなたの見出しで、一つのセルが、あなたのテーブルの残りの部分では、各行は3つのセルを有します。 3つの列すべてを見出しにする場合は、colspan属性を調べます。 – j08691