Este atributo contiene el valor de cuántas filas se extiende la celda. Este atributo solo lo acepta la etiqueta <mtd> .
Sintaxis:
<element rowspan="non-negative-int">
Valores de atributos:
- non-negative-int: este valor contiene el número entero que crea el intervalo por filas.
El siguiente ejemplo ilustra el intervalo de filas en HTML MathML:
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 MathML rowspan Attribute</title> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML rowspan Attribute</h3> <math> <mi>GeeksforGeeks</mi> <mo>=</mo> <mtable frame="solid" columnlines="dashed"> <mtr mathbackground="green;"> <mtd>Course</mtd> <mtd rowspan="4">Date</mtd> <mtd>Fee</mtd> </mtr> <mtr> <mtd> <mi>C++ STL</mi> </mtd> <mtd> <mi> 1499</mi> </mtd> </mtr> <mtr> <mtd> <mi>Placement 100 </mi> </mtd> <mtd> <mi>9999 </mi> </mtd> </mtr> <mtr> <mtd> <mi>DSA Foundation </mi> </mtd> <mtd> <mi>7999</mi> </mtd> </mtr> </mtable> </math> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de rango de filas HTML5 MathML se enumeran a continuación:
- Firefox
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA