Este atributo se utiliza para definir si los subíndices y sobreíndices adjuntos se mueven a posiciones de subíndices y superíndices cuando el estilo de visualización es falso. Este atributo es aceptado por la etiqueta <mo> .
Sintaxis:
<element movablelimits="true|false">
Valores de atributos:
- verdadero: Hace que el operador sea móvil.
- falso: Detiene el móvil del operador.
El siguiente ejemplo ilustra los límites móviles en HTML5 MathML:
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 MathML movablelimits Attribute</title> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML movablelimits Attribute</h3> <math> <mi>GeeksforGeeks</mi> <mo movablelimits="false">=</mo> <mtable displaystyle="false" frame="solid" rowlines="dashed" 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 movablelimits de 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