El atributo de espacio entre filas de MathML en HTML5 se usa para especificar el espacio entre las filas de una tabla. El valor de longitud se puede especificar usando cualquier unidad de longitud CSS. Este atributo puede ser utilizado por la etiqueta <mtable> .
Sintaxis:
<element rowspacing="number">
Valor de los atributos: este atributo tiene un valor único, como se mencionó anteriormente y se describe a continuación:
- número: este valor se puede utilizar para establecer el espacio entre las filas de la tabla en cualquier tamaño.
El siguiente ejemplo ilustra el atributo de espacio entre filas de MathML :
Ejemplo:
HTML
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3> HTML5 MathML rowspacing Attribute </h3> <math> <mi>GeeksforGeeks</mi> <mo>=</mo> <mtable frame="solid" columnlines="dashed" rowspacing="2"> <mtr mathbackground="green;"> <mtd>Course</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 espacio entre 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