With the following...
I get this...Code:<style> fieldset { display : inline; } </style> <body> <table> <tr> <td rowspan="5"> <fieldset> <legend>Test title</legend> <table> <tr> <td>Testing: <input type="text" /></td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> </table> </fieldset> </td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> <tr> <td>Testing: <input type="text" /></td> </tr> </table>
But what I really need is this...
Is there a way to preserve the same row alignments outside the fieldset as within?
![]()




Reply With Quote