上标和下标

半腔热情 提交于 2020-01-22 09:17:32

<sup>用来标记作为上标的字符,表示幂的数学概念。<sub>用来标记为下标的字符,常用在脚注或化学式中。

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <title>上标和下标</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
        <div>化学方程式</div>
        <p>2<sup>2</sup></p>       
                <p>2Mg+O<sub>2</sub>点燃2MgO</p>
                <p>3Fe+2O<sub>2</sub>点燃Fe<sub>3</sub>O<sub>4</sub></p>
                <p>4Al+3O<sub>2</sub>点燃2Al<sub>2</sub>O<sub>3</sub></p>
</html>

  

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!