|
Posted by Sid Ismail on 10/14/93 11:48
On 23 May 2006 01:59:46 -0700, "phl" <killkennyhouse@hotmail.com>
wrote:
: hi,
:
: I have data which I display in a table with 5 columns, some of this
: data needs to be collapsable, so user can hide it if they wish. I am
: trying to do this with a main table of 5 columns for none collapsable
: data and inner tables of the same demensions for collapasable items,
: with is displayed or hiddened depending what user selects, using
: jscript. The html would look like this:
:
: <table border="1" id="table1">
: <tr>
: <td style="width: 400px">hello</td>
: <td>world</td>
: </tr>
: <tr>
: <td colspan="2">
: <table border="1" id="table2">
: <tr align="left">
: <td style="width: 400px">hello new</td>
: <td>world</td>
: </tr>
: </table>
: </td>
: </tr>
: </table>
:
: The problem is with this layout the inner table is shifted a little to
: the right, hence the columns of the inner and outer table aren't
: matching properly.
:
: Can anyone help or provide alternative method?
It's the default cellspacing and cellpadding. Set them to zero in the
inner table.
Sid
Navigation:
[Reply to this message]
|