Este atributo define el espacio entre la mesa y el marco. Este atributo solo lo acepta la etiqueta <mtable> .
Sintaxis:
<element framespacing="number">
Valor de los atributos:
- número: este atributo define el espacio entre la tabla y el marco.
El siguiente ejemplo ilustra el atributo de espacio entre fotogramas en HTML5 MathML:
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML5 MathML framespacing Attribute </title> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML framespacing Attribute</h3> <math> <mi>GeeksforGeeks</mi> <mo>=</mo> <mtable frame="solid" columnlines="dashed" framespacing="2" align="axis 1"> <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 espaciado de fotogramas 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