Blogger Information
Blog 5
fans 0
comment 0
visits 2609
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
004.css 之样式表来源与优先级演示
清石
Original
495 people have browsed it

css 之样式表来源与优先级演示

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="stylesheet" type="text/css" href="css/index.css" />
  6. <title>css 之样式表来源与优先级演示</title>
  7. <style type="text/css">
  8. .in {
  9. color: green;
  10. font-size: 1.5em;
  11. }
  12. #a1{
  13. color: mediumblue;
  14. font-size: 1.5em;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <h1>CSS 之样式表来源与优先级演示</h1>
  20. <hr />
  21. <p class="out">
  22. 我是来自于外部公共样式
  23. </p>
  24. <p style="color: aqua;font-size: 1.5em;">
  25. 我是来自当前元素的属性
  26. </p>
  27. <p class="in">
  28. 我是来自当前文档内部样式
  29. </p>
  30. <p class="in" id="a1">
  31. 我也是来自当前文档内部样式,但我的颜色不一样哦
  32. </p>
  33. </body>
  34. </html>

效果图如下:

样式表

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:一个元素的样式来源有时很复杂, 最终长啥样, 是由多种来源决定的
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