博客列表 >HTML_002_CSS元素样式来源

HTML_002_CSS元素样式来源

CLAY
CLAY原创
2020年10月11日 02:19:17525浏览
css元素样式来源:
  1. 当前文档: <style>
  2. 当前元素的属性: style="..."
  3. 外部公共样式: common.css jQuery.css layui.css <link>引入

CSS元素样式来源

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <link rel="stylesheet" href="static/css/style1.css" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <img
  11. src="https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=4113007248,1487639643&fm=26&gp=0.jpg"
  12. alt=""
  13. />
  14. <h1 class="title">满江红</h1>
  15. <h1 id="content-one" class="content">怒发冲冠,凭栏处、潇潇雨歇。</h1>
  16. <h1 class="content">抬望眼、仰天长啸,壮怀激烈。</h1>
  17. <h1 id="content-one" class="content" style="color: darkcyan">
  18. 三十功名尘与土,八千里路云和月。
  19. </h1>
  20. <h1 id="content-one" class="content-four">莫等闲、白了少年头,空悲切。</h1>
  21. <h1>靖康耻,犹未雪。</h1>
  22. <h1>臣子恨,何时灭。</h1>
  23. <h1>驾长车,踏破贺兰山缺。</h1>
  24. <h1>壮志饥餐胡虏肉,笑谈渴饮匈奴血。</h1>
  25. </body>
  26. </html>
  1. /* 标签:选择器selector */
  2. /* 选择器 */
  3. h1 {
  4. /* 声明:属性color: 值green */
  5. /* 声明块:使用大括号 将多个声明包裹起来 */
  6. color: green;
  7. font-weight: lighter;
  8. font-size: 20px;
  9. text-align: center;
  10. }
  11. /*
  12. 声明:由属性和属性值两部分组成
  13. 声明块:由一个或多个声明,包裹在一对大括号中
  14. 选择器:写在声明块前面的一个标识符,用来选择页面中一个或多个元素
  15. 规则集:选择器和声明块组成
  16. */
  17. /* #id选择器*/
  18. #content-one {
  19. color: violet;
  20. font-size: 20px;
  21. }
  22. /* class类选择器 */
  23. .title {
  24. color: red; /*!important 使其优先级变道最大*/
  25. font-weight: bolder;
  26. font-size: 26px;
  27. text-align: center;
  28. }
  29. .content {
  30. color: tomato;
  31. font-size: 20px;
  32. }
  33. .content-four {
  34. color: darkslateblue !important;
  35. }
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议