博客列表 >CSS学习(一)

CSS学习(一)

▽空城旧梦
▽空城旧梦原创
2021年03月24日 07:59:36536浏览

优先级

id>class>元素

可以通过(id,类,标签)个数进行比较

模块化和组件使用

  1. header {
  2. min-height: 20em;
  3. background: lightskyblue;
  4. color: red;
  5. }
  6. main {
  7. min-height: 50em;
  8. background: red;
  9. color: black;
  10. font-size: 20px;
  11. font-style: inherit;
  12. }
  13. h1 {
  14. color: cyan;
  15. }
  16. footer {
  17. min-height: 10em;
  18. background: purple;
  19. color: skyblue;
  20. }
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  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>CSS2.0</title>
  8. <style>
  9. @import url(css/demo2.css);
  10. </style>
  11. </head>
  12. <body>
  13. <header>
  14. <a href="">首页</a><a href="">第二页</a><a href="">第三页</a>末页<a
  15. href=""
  16. ></a>
  17. </header>
  18. <main>
  19. <h1>数字4.0解决方案</h1>
  20. <p>方案</p>
  21. </main>
  22. <footer>
  23. <p>仅限中国使用</p>
  24. </footer>
  25. </body>
  26. </html>

伪类学习

  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>选择器</title>
  8. <style>
  9. ul li {
  10. background: cyan;
  11. }
  12. /* body > ul > li {
  13. background: red;
  14. } */
  15. /* .start + li {
  16. background: white;
  17. }
  18. .start ~ li {
  19. background: yellow;
  20. } */
  21. */ tr:nth-of-type(2) {
  22. background: green;
  23. }
  24. .list td:nth-of-type(3) {
  25. background: cyan;
  26. }
  27. .list tr:nth-of-type(3) {
  28. background: red;
  29. }
  30. #morder.list li:nth-last-of-type(1) {
  31. background: greenyellow;
  32. }
  33. .start > li:nth-last-of-type(1) {
  34. background: cadetblue;
  35. }
  36. .start > li:first-of-type {
  37. background: purple;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <ul class="start" id="morder">
  43. <li>item1</li>
  44. <li>item2</li>
  45. <li>
  46. item3
  47. <ul>
  48. <li>item1</li>
  49. <li>item2</li>
  50. <li>item3</li>
  51. </ul>
  52. </li>
  53. <li>item4</li>
  54. <li>item5</li>
  55. </ul>
  56. <div>
  57. <table class="list" border="1" width="75%" cellspacing="0">
  58. <tr>
  59. <td></td>
  60. <td></td>
  61. <td></td>
  62. </tr>
  63. <tr>
  64. <td></td>
  65. <td></td>
  66. <td></td>
  67. </tr>
  68. <tr>
  69. <td></td>
  70. <td></td>
  71. <td></td>
  72. </tr>
  73. </table>
  74. </div>
  75. </body>
  76. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议