博客列表 >1215-css引入和选择器

1215-css引入和选择器

待伊散落尽芳华
待伊散落尽芳华原创
2020年12月17日 16:24:53528浏览

1215-css引入和选择器

1. css的三种引入方式

  1. 内部样式:将css写在style标签中。仅对当前html文档有效。
  2. 外部样式:适用于所有引入css文件的html文档。使用link标签、或在style标签内容中使用@import
  3. 行内样式:将css赋予标签的style属性。

2. css选择器

  1. 标签选择器
  1. <head>
  2. <style>
  3. h1 {
  4. background-color: red;
  5. }
  6. </style>
  7. </head>
  8. <body>
  9. <h1>标签选择器</h1>
  10. </body>
  1. 属性选择器
  1. <head>
  2. <style>
  3. h1[class="ooo"] {
  4. background-color: red;
  5. }
  6. .ooo {
  7. background-color: red;
  8. }
  9. #ooo {
  10. background-color: red;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h1 id="ooo" class="ooo">类选择器</h1>
  16. </body>
  1. 上下文选择器
  1. <head>
  2. <style>
  3. /* 1. 后代选择器,所有层级 */
  4. ul li{
  5. background-color: red;
  6. }
  7. /* 子元素选择器:仅父子层级 */
  8. body>ul>li {
  9. background-color: red;
  10. }
  11. /* 同级相邻选择器:仅选中相邻的第一个兄弟元素 */
  12. li+li{
  13. background-color: red;
  14. }
  15. /* 同级所有选择器:选中与之相邻的后面所有的兄弟元素 */
  16. li~li{
  17. background-color: red;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <ul>
  23. <li>li-1</li>
  24. <li>li-2</li>
  25. <li>li-3</li>
  26. <li>li-4</li>
  27. <li>li-5
  28. <ul>
  29. <li>li-1</li>
  30. <li>li-2</li>
  31. <li>li-3</li>
  32. <li>li-4</li>
  33. </ul>
  34. </li>
  35. </ul>
  36. </body>
  1. 伪类选择器
  1. <head>
  2. <style>
  3. /* 匹配任意位置元素: :nth-of-type(an+b)
  4. 偶数:odd
  5. 奇数:even
  6. */
  7. ul li:nth-of-type(0n+3){
  8. color : red;
  9. }
  10. /* 反向获取任意元素: :nth-last-of-type(an+b) */
  11. ul li:nth-last-of-type(-n+3){
  12. color : red;
  13. }
  14. /* 选择第一个子元素: :first-of-type
  15. 选择最后一个子元素: :last-of-type
  16. */
  17. ul li:first-of-type{
  18. color : red;
  19. }
  20. ul li:last-of-type{
  21. color : red;
  22. }
  23. /* 匹配父元素的唯一子元素: :only-of-type */
  24. ul li:only-of-type{
  25. color : red;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <ul>
  31. <li>li-1</li>
  32. <li>li-2</li>
  33. <li>li-3</li>
  34. <li>li-4</li>
  35. <li>li-5</li>
  36. </ul>
  37. </body>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议