sup

  1. 前端<sup><a href="http://www.baidu.com" target="_blank">[1]</a></sup>
  2. <br>
  3. 10<sup>5</sup>
  4. <br>
  5. Na<sup>+</sup>

image.png

  1. H<sub>2</sub>SO<sub>4</sub>

sup英文:superscripted上标标签
sub英文:subscripted下标标签

英文全称最好背下来,逼格高,面试提一句
内联元素

span

  1. span 内联元素 inline element
  2. <span style="background-color: green;">123</span>

image.png
没有样式,内联元素

  1. <p>我是一个非常非常<span style="color: red;"></span><span style="color: blue;">X</span>的前端工程师</p>

image.png
可以给一行内的文字上颜色

  1. <p>我是一个非常非常<span id="niu" style="color: red;"></span><span style="color: blue;">X</span>的前端工程师</p>
  2. <script>
  3. var niu=document.getElementById('niu');
  4. console.log(niu.innerText);
  5. </script>

ol ul序列列表

ol有序列表 orderlist
ul无序列表 unorder list
序列列表

  1. <ol type="A">
  2. <!-- A如果超过26个就是AA AB a i罗马数字 I罗马数字 1数字
  3. -->
  4. <li>HTML</li>
  5. <li>CSS</li>
  6. <li>JavaScript</li>
  7. </ol>
  1. <ol type="a" start="c">
  2. <li>123</li>
  3. <li>123</li>
  4. <li>123</li>
  5. <li>123</li>
  6. <li>123</li>
  7. <li>123</li>
  8. </ol>
  9. <ol type="1" start="10">
  10. start除了数字其它都不可以
  11. <li>123</li>
  12. <li>123</li>
  13. <li>123</li>
  14. <li>123</li>
  15. <li>123</li>
  16. <li>123</li>
  17. </ol>

image.png

  1. <ol type="1" start="10" reversed="reversed">
  2. <li>123</li>
  3. <li>123</li>
  4. <li>123</li>
  5. <li>123</li>
  6. <li>123</li>
  7. <li>123</li>
  8. </ol>

倒序如果超出10个,第11个就是负数

ul

  1. <ul type="disc">
  2. <li>HTML</li>
  3. <li>CSS</li>
  4. <li>JavaScript</li>
  5. </ul>
  6. <ul type="square">
  7. <li>HTML</li>
  8. <li>CSS</li>
  9. <li>JavaScript</li>
  10. </ul>
  11. <ul type="circle">
  12. <li>HTML</li>
  13. <li>CSS</li>
  14. <li>JavaScript</li>
  15. </ul>
  16. <!-- type="disc|square|circle" -->
  1. type="disc|square|circle"

ol ul li 是块级元素

dl

definition list 定义列表
dt definition term
dd definition description

  1. <dl>
  2. <dt>
  3. <dd>我要成为WEB开发工程师</dd>
  4. <dd>我正在学习前端开发</dd>
  5. </dt>
  6. </dl>
  7. <dl>
  8. <dt>我的梦想</dt>
  9. <dd>我要成为WEB开发工程师我要成为WEB开发工程师</dd>
  10. </dl>

image.png
有样式的东西一般都不会用 比如下拉框select 更改默认的太麻烦了
自己封装
image.png

table

  1. table 表格 最早时表格是用来布局
  2. caption标题标签
  3. <table>
  4. <caption></caption>
  5. </table>
  1. table 表格 最早时表格是用来布局
  2. caption标题标签
  3. tr table header cell表头标签
  4. td table data cell单元格标签
  5. <table border="1" cellpadding="10" cellspacing="10">
  6. <caption>VIP班级学生联络表</caption>
  7. <tr>
  8. <th>ID</th>
  9. <th>姓名</th>
  10. <th>电话号码</th>
  11. <th>备注</th>
  12. </tr>
  13. <tr>
  14. <td>1</td>
  15. <td>东东</td>
  16. <td>13900000000</td>
  17. <td>班长</td>
  18. </tr>
  19. <tr>
  20. <td>1</td>
  21. <td>东东</td>
  22. <td>13900000000</td>
  23. <td>班长</td>
  24. </tr>
  25. </table>