Blogger Information
Blog 56
fans 0
comment 4
visits 38123
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS样式介绍及优先级讲解
异乡客
Original
417 people have browsed it

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>CSS</title>
  8. <link rel="stylesheet" href="./css/style1.css" />
  9. </head>
  10. <body>
  11. <!-- css作用元素的样式,和布局?-->
  12. <!-- 内部style属性的优先级更高,style标签优先级更低。内部是内联样式 -->
  13. <div>
  14. <h1 style="color: red">Hello World</h1>
  15. <h1>baidu.cn</h1>
  16. <h1>前端开发教程</h1>
  17. <p>ceshi</p>
  18. </div>
  19. <!-- HTML,结构化的文本文档,它内部的所有元素,必须使用“标签”进行描述 -->
  20. <!-- 只要放到了HtmL中的内容,并且要被浏览器进行解析或处理的,必须要放到一个“标签”中 -->
  21. <!-- 1.找到要被添加样式的元素
  22. selecytor:选择器
  23. 2.为匹配的元素,设置样式规则 -->
  24. <!-- <style>
  25. /* 样式的优先级如下 */
  26. /* 行内样式(元素本行的)>文档样式(文档中设置)>默认样式(系统自带) */
  27. /* 行内样式(元素本行的)>文档样式(文档中设置)>外部样式link */
  28. 默认样式>继承父的样式(和文本相关的字体颜色等能继承,盒模型的属性不行)
  29. h1 {
  30. /* 样式声明:使用的是“名值对” */
  31. color: rgb(76, 0, 255);
  32. color:green;
  33. 样式来源,和优先级有关,也和书写顺序相关
  34. 层叠样式表,后面的覆盖前面的;
  35. }
  36. /* 选择器{
  37. 一个或多个样式声明
  38. } */
  39. </style> -->
  40. </body>
  41. </html>
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