📜  HTML |下标和上标标签

📅  最后修改于: 2021-10-28 03:09:54             🧑  作者: Mango

下标: 标签用于向 HTML 文档添加下标文本。 标签定义下标文本。下标文本出现在法线下方半个字符处,有时以较小的字体呈现。下标文本可用于化学式,例如将 H2O 写为 H 2 O。
上标: 标签用于向 HTML 文档添加上标文本。 标签定义上标文本。上标文本出现在法线上方半个字符处,有时以较小的字体呈现。上标文本可用于脚注。
例子:

  1. HTML 代码中的 Super 和 Sub 脚本:
html


  

      

Testing subscript text

         

Testing superscript text

     


html


  

    

  

      

A sub element is displayed like this

         

This text contains subscript text

         

Change the default CSS settings to see the effect.

     


html


  

    

  

      

Examples to demonstrate subscript text

         

Chemical formula of water is H2O

         

Ti+2= Ti + Ti+1

         

Change the default CSS settings to see the effect.

     


html


      

    

  

      

A sup element is displayed like this:

         

This text contains superscript text

         

Change the default CSS settings to see the effect.

     


html


      

    

  

      

Examples to demonstrate superscript text

         

2 4=16

         

X 4+ Y6

         

9th of september

         

Change the default CSS settings to see the effect.

     


  1. 输出:

  1. 使用 CSS 设置下标样式:

html



  

    

  

      

A sub element is displayed like this

         

This text contains subscript text

         

Change the default CSS settings to see the effect.

     
  1. 输出:

  1. 另一个 CSS 示例:

html



  

    

  

      

Examples to demonstrate subscript text

         

Chemical formula of water is H2O

         

Ti+2= Ti + Ti+1

         

Change the default CSS settings to see the effect.

     
  1. 输出:

  1. 使用 CSS 的上标示例:

html



      

    

  

      

A sup element is displayed like this:

         

This text contains superscript text

         

Change the default CSS settings to see the effect.

     
  1. 输出:

  1. 使用上下标编写数学方程的示例

html



      

    

  

      

Examples to demonstrate superscript text

         

2 4=16

         

X 4+ Y6

         

9th of september

         

Change the default CSS settings to see the effect.

                          
  1. 输出:

支持的浏览器:支持的浏览器如下所列。

  • 谷歌浏览器
  • IE浏览器
  • 火狐
  • 歌剧
  • 苹果浏览器

HTML 是网页的基础,用于通过构建网站和 Web 应用程序进行网页开发。您可以按照此 HTML 教程和 HTML 示例从头开始学习 HTML。