HTML CSS Reference/HTML Attributes Reference/rowspan

Материал из Web эксперт
Перейти к: навигация, поиск

"rowspan" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For rowspan</Title></head> <BODY>

Cell 1 Cell 2 Cell 3 Cell 4 Cell 5
Cell 7 Cell 9 Cell 10
Cell 6 Cell 11
Cell 12 Cell 8 Cell 13 Cell 14

</BODY> </HTML>


     </source>
   
  


rowspan is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<td> <th> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"rowspan" Syntax and Note

   <source lang="html4strict">

Note:

Its integer value determines how many table rows a cell can span.

Syntax:

<element rowspan="value"> . . . </element>


     </source>