Jarllax
Joined: 12 Apr 2006
Posts: 1
Location: Minnesota
|
Posted: 4/29/2006, 5:05 am Post subject: Difference between Firefox and IE valign=bottom |
|
|
So I have this code on a page of mine and in Firefox the second <tr> is not aligning to the bottom, but it IS working in IE. Is there anything I could do to change this?
| Code: |
<tr>
<td valign="top">
<span class="name">
<a name="{postrow.U_POST_ID}"></a><b><a href="javascript:emoticon('[b]{postrow.POSTER_NAME}[/b], ')">{postrow.POSTER_NAME}</a></b>
</span><br />
<span class="postdetails">{postrow.RANK_IMAGE}<br />
{postrow.POSTER_AVATAR}<b>{postrow.A_DESC}</b><br />{postrow.POSTER_ONLINE}<br /><br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />
{postrow.POST_DAY_STATS}<br />{postrow.POSTER_FROM}
</span><br /><br />
</td>
</tr>
<tr>
<td valign="bottom">
<span class="postdetails">
{L_POSTED}: {postrow.POST_DATE}<br />
<b>{postrow.L_POST}: <a onclick="link_to_post({postrow.POST_ID}); return false;" href="#">#{postrow.POST_NUMBER}</a></b>
</span>
</td>
</tr> |
|
|