📜  如何在 HTML 中设置表格单元格应跨越的行数?

📅  最后修改于: 2021-10-29 06:26:17             🧑  作者: Mango

在本文中,我们将展示表头单元格如何跨越多行。该任务可以通过在使用标签的同时使用 rowspan 属性来完成。此属性用于合并一个或多个单元格以及自动增加单个标题单元格的高度。

句法:

table content...

例子:

HTML


  
    
      

GeeksforGeeks

                  Set the number of rows a table header         cell should span in HTML                                                                                                                                                               
NAME of BANKSUNDAY HOLIDAYOpen Timings
SBI10am to 5pm
PNB10am to 5pm
    
  


HTML


  
    
  
  
  
    
      

GeeksforGeeks

               Set the number of rows a table        cell should span in HTML                  
                                                                                                                                                                                                                            
NameAgeID
Raj24123
sandeep1234
fahad2112345
    
  


输出:

行上的标题跨度

示例 2:在此示例中。我们将学习如何使行跨越多个单元格。

该任务可以通过使用rowspan 来完成 标签中使用 标签时的属性。它允许单个表格单元格跨越多个单元格的高度。它包含一个数值,用于定义应该跨越的行数。

句法:


  table column content...

HTML



  
    
  
  
  
    
      

GeeksforGeeks

               Set the number of rows a table        cell should span in HTML                  
                                                                                                                                                                                                                            
NameAgeID
Raj24123
sandeep1234
fahad2112345
    
                  

输出: