博客列表 >1215-css三种引入方式|示例演练选择器

1215-css三种引入方式|示例演练选择器

葡萄枝子
葡萄枝子原创
2020年12月16日 00:04:22635浏览

css三种引入方式|示例演练选择器

  1. 实例演示css规则的三种引入到html文档中的方式;
  2. 实例演示标签选择器,class选择器,id选择器,上下文选择器, 结构伪类选择器,重点是结构伪类选择器

1. 实例演示css规则的三种引入到html文档中的方式

1.1 内部样式

  1. <style>
  2. .inner-style{color: gray;}
  3. </style>
  1. <p class="inner-style">仅对当前元素有效,style标签</p>

1.2 外部样式

  1. <!-- link 标签引入外部样式 -->
  2. <link rel="stylesheet" href="css/style.css">
  1. /* style.css 内容 */
  2. .link-css{background-color: #ddd;}
  3. .import-css{border-left: 5px grey solid;}
  1. <p class="link-css">link标签引入外部css</p>
  1. /* @import 引入外部样式 */
  2. <style>
  3. @import url(css/style.css);
  4. </style>
  1. <p class="import-css">@import引入外部css</p>

1.3 行内样式

  1. <p style="text-decoration: underline;">行内样式, style属性</p>

2. 实例演示标签选择器,class选择器,id选择器,上下文选择器, 结构伪类选择器,重点是结构伪类选择器

2.1 标签选择器

  1. <style>
  2. p{text-decoration: underline;}
  3. </style>
  4. <p>tag selector</p>

2.2 class选择器

  1. <style>
  2. .paragraph{border: 1px red solid;}
  3. </style>
  4. <p class="paragraph">class selector</p>

2.3 id选择器

  1. <style>
  2. #paragraph{background-color: lightgreen;}
  3. </style>
  4. <p id="paragraph">id selector</p>

2.4 上下文选择器

  1. <!-- 示例 -->
  2. <ul class="list">
  3. <li class="first">item1</li>
  4. <li class="second">item2</li>
  5. <li>item3
  6. <ul>
  7. <li>item4</li>
  8. <li>item5</li>
  9. </ul>
  10. </li>
  11. <li>item6</li>
  12. </ul>
  13. <ul>
  14. <li>item7</li>
  15. </ul>

2.4.1 后代选择器

  1. ul li{background-color: lightgray;}

2.4.2 子元素选择器

  1. ul > li{background-color: lightgray;}

2.4.3 同级相邻选择器

  1. ul > li.first + li{background-color: lightgray;}

2.4.4 同级所有选择器

  1. ul > li.second ~ li{background-color: lightgray;}

2.5 结构伪类选择器

  1. /* .list 列表第二个子元素 */
  2. .list > li:nth-of-type(2){background-color: lightgray;}
  3. /* .list 第三个子元素至结束 */
  4. .list > li:nth-of-type(n+3){background-color: lightgray;}
  5. /* .list 奇数行 */
  6. .list > li:nth-of-type(2n+1){background-color: lightgray;}
  7. /* .list 偶数行 */
  8. .list > li:nth-of-type(2n){background-color: lightgray;}
  9. /* .list 偶数行 */
  10. .list > li:nth-of-type(even){background-color: lightgray;}
  11. /* .list 奇数行 */
  12. .list > li:nth-of-type(odd){background-color: lightgray;}
  13. /* .list 倒数第二个子元素 */
  14. .list > li:nth-last-of-type(2){background-color: lightgreen;}
  15. /* .list 倒数两个子元素 */
  16. .list > li:nth-last-of-type(-n+2){background-color: lightgreen;}
  17. /* .list 列表第一个 */
  18. .list > li:first-of-type{background-color: lightgray;}
  19. /* .list 列表最后一个 */
  20. .list > li:last-of-type{background-color: lightgray;}
  21. /* ul 列表只有一个子元素的 */
  22. ul > li:only-of-type{background-color: lightgray;}
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议