Blogger Information
Blog 2
fans 0
comment 0
visits 1384
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html的文档结构-html元素的三大通用属性-元素、类、id的样式规则
uboy
Original
617 people have browsed it

1.前端有三宝HTML、CSS、JavaScript


2.html的文档结构

  1. <!-- 声明是html文档,位于<html>标签之前 -->
  2. <!DOCTYPE html>
  3. <!-- 根元素 -->
  4. <html>
  5. <!-- 头元素 -->
  6. <head>
  7. <!-- 元数据,字符编码为UTF-8 -->
  8. <meta charset="UTF-8" />
  9. <!-- 文档标题 -->
  10. <title></title>
  11. </head>
  12. <!-- 主体元素:定义html文档的主体 -->
  13. <body>
  14. <!-- 标题元素 -->
  15. <h1>
  16. </h1>
  17. <!-- 段落元素 -->
  18. <p>
  19. </p>
  20. </body>
  21. </html>

3.html元素的三大通用属性
1.id:由用户保证它在当前页面的唯一性,浏览器并不检查
2.class:类属性,返回多个具有共同特征的元素集合
3.style:设置当前元素对象的样式
这三大通用属性的优先级:class>id>style

总结:这节课让我了解到了html的文档结构和哪三个html三大通用属性,懂得了如何用js获取浏览器内容

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:通过 css, js二种式来获取页面元素是第一步, 因为只有拿到了元素, 才能对他们下手对吧
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post