Sõnastik Plugin

Rowspan - Rowspan - The rowspan attribute specifies the number of rows a cell should span. - Атрибут rowspan задает количество строк, которые должна занимать ячейка. Näide: <table> <tr> <th>Month</th> <th>Savings</th> <th>Savings for holiday!</th> </tr> <tr> <td>January</td> <td>$100</td> <td rowspan="2">$50</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table>
1 56 57 58 59 60 70