help with html tables ?

2008-12-22 10:33 pm
i have this code in my html file (yes i have the all the code. the other tables work fine) and when i open the file the two middle entries appear to the right, not against the edge of the page. if i shorten the titles of the tables, it fixes it, but the titles can't be changed. how can i fix this?

<table border="0"><tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr>
<tr><td align="right">1.</td><td>KA-POW! Action Series Trrailer</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr>
<tr><td align="right">2.</td><td>Operation: Tiger Bomb</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Splendid's SSSSSuper Squad</strong></td></tr>
<tr><td align="right">3.</td><td>Mirror, Mirror</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Buddhist Monkey</strong></td></tr>
<tr><td align="right">4.</td><td>Three Courses of Death</td></tr>
</table>
更新1:

ok, this is my new code and it still doesn't work right: <table border="0"><tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr> <table border="0"><tr><td colspan="2"><strong>W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr> <tr><td align="left">2.</td><td>Operation: Tiger Bomb</td></tr> <table border="0"><tr><td colspan="2"><strong>Splendid's SSSSSuper Squad</strong></td></tr> <tr><td align="left">3.</td><td>Mirror, Mirror</td></tr> <table border="0"><tr><td colspan="2"><strong>Buddhist Monkey</strong></td></tr> <tr><td align="left">4.</td><td>Three Courses of Death</td></tr> <table border="0"><tr><td colspan="2"><strong>Other:</strong></td></tr> <tr><td align="left">1.</td><td>KA-POW! Action Series Trailer</td></tr> </table>

回答 (6)

2008-12-22 10:49 pm
✔ 最佳答案
<table border="0">
<tr>
<td colspan="2">
<strong>KA-POW! Episodes</strong>
</td>
</tr>
<tr>
<td align="left">
1.
</td>
<td>
KA-POW! Action Series Trrailer
</td>
</tr>
<tr>
<td colspan="2">
<strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong>
</td>
</tr>
<tr>
<td align="left">
2.
</td>
<td align="left">
Operation: Tiger Bomb
</td>
</tr>
<tr>
<td colspan="2">
<strong>KA-POW! Splendid's SSSSSuper Squad</strong>
</td>
</tr>
<tr>
<td align="left">
3.
</td>
<td align="left">
Mirror, Mirror
</td>
</tr>
<tr>
<td colspan="2">
<strong>KA-POW! Buddhist Monkey</strong>
</td>
</tr>
<tr>
<td align="left">
4.
</td>
<td align="left">
Three Courses of Death
</td>
</tr>
</table>
2008-12-23 2:45 am
remove the other <td></td>:

<table border="0"><tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr>
<tr><td align="left">1.KA-POW! Action Series Trrailer</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr>
<tr><td align="left">2.Operation: Tiger Bomb</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Splendid's SSSSSuper Squad</strong></td></tr>
<tr><td align="left">3.Mirror, Mirror</td></tr>
<table border="0"><tr><td colspan="2"><strong>KA-POW! Buddhist Monkey</strong></td></tr>
<tr><td align="left">4.Three Courses of Death</td></tr>
2008-12-22 11:48 pm
<table border="0">
<tr>
<td colspan="2"><strong>KA-POW! Episodes</strong></td>
</tr>

<tr>
<td colspan="2"><strong>W.A.R. (Weapon Animal Regiment) Journal</strong></td>
</tr>

<tr>
<td align="left">2.</td>
<td>Operation: Tiger Bomb</td>
</tr>

<tr>
<td colspan="2"><strong>Splendid's SSSSSuper Squad</strong></td>
</tr>

<tr>
<td align="left">3.</td>
<td>Mirror, Mirror</td>
</tr>

<tr>
<td colspan="2"><strong>Buddhist Monkey</strong></td>
</tr>

<tr>
<td align="left">4.</td>
<td>Three Courses of Death</td>
</tr>

<tr>
<td colspan="2"><strong>Other:</strong></td>
</tr>

<tr>
<td align="left">1.</td>
<td>KA-POW! Action Series Trailer</td>
</tr>
</table>
2008-12-22 10:58 pm
Put a < br /> In the middle of the title example: <td>KA-POW! < br /> Action series trailer...</td>
2008-12-22 10:53 pm
You've got 3 extra open <table border="0"> in there.
This WILL work:

<table border="0">
<tr><td colspan="2"><strong>KA-POW! Episodes</strong></td></tr>
<tr><td align="right">1.</td><td>KA-POW! Action Series Trailer</td></tr>
<tr><td colspan="2"><strong>KA-POW! W.A.R. (Weapon Animal Regiment) Journal</strong></td></tr>
<tr><td align="right">2.</td><td>Operation: Tiger Bomb</td></tr>
<tr><td colspan="2"><strong>KA-POW! Splendid's SSSSSuper Squad</strong></td></tr>
<tr><td align="right">3.</td><td>Mirror, Mirror</td></tr>
<tr><td colspan="2"><strong>KA-POW! Buddhist Monkey</strong></td></tr>
<tr><td align="right">4.</td><td>Three Courses of Death</td></tr>
</table>
2008-12-22 10:47 pm
Could be a problem with nesting tables. I think nesting tables is deprecated.


收錄日期: 2021-05-03 14:02:29
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20081222143355AA9IkNp

檢視 Wayback Machine 備份