I appreciate the help, but it still doesn't seem to work for TR tags.
I see the changes you made and as far as I can tell that should have done it, but for some reason the display keeps getting set back to block instead of table-row.
To understand how table-row works, try the following. See also the link I provided in my initial post.
HTML Code:
<table style="width:100%;" border="1">
<tr>
<td>1</td><td>2</td><td>3</td><td>4</td>
</tr>
<tr style="display:block;">
<td>1</td><td>2</td><td>3</td><td>4</td>
</tr>
<tr style="display:table-row;">
<td>1</td><td>2</td><td>3</td><td>4</td>
</tr>
</table>
Thanks again!
Bookmarks