How would one have multiple fieldset with multiple columns, while having the colums all the same width?
I know that the following is not valid...
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Untitled</title> </head> <body> <table> <fieldset> <legend>First</legend> <tr> <td>a</td> <td>b</td> </tr> </fieldset> <fieldset> <legend>Second</legend> <tr> <td>c</td> <td>d</td> </tr> </fieldset> </table> </body> </html>


Reply With Quote

Bookmarks