Question

enter image description here

Im really stuck making the markup for this kind of table I almost spend 2hrs reading the difference between rowspan and colspan. Im badly need help for this guys.

Thanks

Was it helpful?

Solution

Code for first two rows:

<html>
<head>
<title>
</title>
</head>
<body>
<table border="2">
    <tr>
        <td rowspan="2">Diversifier Portfolio PDF</td>
        <td>Investment Management</td>
        <td>0.30%</td>
        <td rowspan="2">0.40%</td>
    </tr>
    <tr>
        <td>Administration</td>
        <td>0.10%</td>      
    </tr>
</table>
</body>
</html>

Edit: I was too slow :'(

OTHER TIPS

Repeat the same for three times

 <table border="1">
        <tr>
            <td rowspan="2">
                Divers
            </td>
            <td>
                Invest
            </td>
            <td>
                0.30%
            </td>
            <td rowspan="2">
                0.40%
            </td>
        </tr>
        <tr>
            <td>
                Invest
            </td>
            <td>
                0.10%
            </td>
        </tr>
    </table>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top