0
How to use rowspan tag?
i tried alot, but wihout result
5 odpowiedzi
+ 2
<table border="1">
<tr>
<td rowspan="3">01</td>
<td>02</td>
<td>03</td>
</tr>
<tr>
<td rowspan="2">04</td>
<td>05</td>
</tr>
<tr>
<td>06</td>
</tr>
</table>
+ 4
rowspan is an attribute :)
example:
<table>
<tr>
<td>Name:</td>
<td>Nikola</td>
</tr>
<tr>
<td rowspan="2">Telephone:</td>
<td>55577854</td>
</tr>
<tr>
<td>55577855</td>
</tr>
</table>
+ 1
rowspan is not a tag, it's a property for table cell
+ 1
yes, sorry I meant that, but I got a mistake, so...
my question is how to use this attribute?
0
thanks alot Yaroslav, your code helps me alot to understand, it is very simple and has the same way of lessons...
thanks for all efforts for all of you