Este atributo se utiliza para establecer el ancho o aumentar/disminuir el ancho del contenido. Este atributo es aceptado por las etiquetas <mglyph> , <mpadded> , <mspace> y <mtable> .
Sintaxis:
<element width="length">
Valores de atributos:
- length: Mantiene el dígito en una unidad específica, ese ancho se definirá.
El siguiente ejemplo ilustra el ancho en HTML5 MathML:
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 MathML width Attribute</title> </head> <body style="text-align:center;"> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML width Attribute</h3> <math> <mrow> <mpadded lspace="2em" voffset="1em" height="1em" depth="3em" width="7em"> <mfrac> <mn>987654</mn> <mn>20</mn> </mfrac> </mpadded> </mrow> </math> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de ancho 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