Possible to span columns?
-
Hi, Is it possible to span columns to create something like the table rendered by:
<table border="0" style="text-align:center;"> <thead> <tr> <th colspan="2" style="background-color:#000099;color:white;" >Transaction Value</th> <th> </th> <th colspan="4" style="background-color:#000099;color:white;"> Non-Exclusive Fee</th> </tr> <tr> <th width="65" style="background-color:cyan;color:black;">Over</th> <th width="95" style="background-color:cyan;color:black;">But not over</th> <th> </th> <th width="65" style="background-color:cyan;color:black;">Fee</th> <th width="10" style="background-color:cyan;color:black;">+</th> <th width="65" style="background-color:cyan;color:black;">%</th> <th width="175" style="background-color:cyan;color:black;">of the amount over</th> </tr> </thead> <tbody> <tr> <td width="65"> $0</td> <td width="95"> $50,000</td> <td> </td> <td width="65"> $0</td> <td width="10"> +</td> <td width="65"> 8.000%</td> <td width="175"> $0</td> </tr> <tr> <td width="65"> $50,000</td> <td width="95"> $100,000</td> <td> </td> <td width="65"> $3,750</td> <td width="10"> + <td width="65"> 7.500%</td> <td width="175"> $50,000</td> </tr> </tbody> </table>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Possible to span columns?’ is closed to new replies.