I am trying to format a table to look like this...
Basically i want the "Dates" row to have two columns inside it (to and from) both of them 50% the width of dates...but however when i try to format it. "To" takes all of date and "From" takes all of Name. they arent locked under "Dates"
Any help will be appreciated...Thank you
<th width="100%">Dates</th><th>Name</th><th>Age</th> <tr> <tr> <td width="50%">To</td> <td width="50%">From</td> </tr> </tr> Change
<table border="1"> <tr class="heading"> <td colspan="6">Information</td> </tr > <th width ="15" colspan="2">Dates</th><th> Name</th><th>Age</th> <tr> <tr> <td width="2">From</td> <td width="2">To</td> <td></td> <td></td> </tr> <tr> <td width="5"> <input type="text" class="input" name="1fdate" /></td> <td width="2"> <input type="text" class="input" name="1fdate" /></td> </tr> </tr> </table>
<th>too and use the headers attribute as well as what Back suggests so that the table is accessible.