當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


HTML5 MathML scriptminsize屬性用法及代碼示例

此屬性保留由於腳本級別的更改而用於調整字體大小的最小值。其默認值為0.71。此屬性僅被<mstyle>標記接受。

用法:

<element scriptminsize="number">

屬性值:

  • number:此值用於設置由於腳本級別的更改而允許的最小字體大小。

以下示例說明了HTML5 MathML中的scriptminsize:

例:



HTML

<!DOCTYPE html>  
<html>  
  
<body>  
    <center>  
        <h1 style="color:green">  
            GeeksforGeeks  
        </h1>  
  
        <h3>HTML5 MathML scriptminsize Attribute</h3>  
  
        <math>  
            <mstyle displaystyle="true"
                    mathcolor="purple"
                    scriptlevel="0"
                    scriptminsize="2">  
                <mrow>  
                    <msubsup>  
                        <mo>∑</mo>  
                        <mn> i=1 </mn>  
                        <mn> n </mn>  
                    </msubsup>  
                    <mo>+</mo>  
                    <msub>  
                        <mi>x</mi>  
                        <mn>i</mn>  
                    </msub>  
                    <mo>=</mo>  
                    <mn>?</mn>  
                </mrow>  
            </mstyle>  
        </math>  
    </center>  
</body>  
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML5 MathML scriptminsize屬性支持的瀏覽器:

  • Firefox




相關用法


注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 HTML5 MathML scriptminsize Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。