博客列表 >1021作业 - CSS选择器进阶版和样式美化简单版

1021作业 - CSS选择器进阶版和样式美化简单版

时间在渗透
时间在渗透原创
2022年10月21日 22:20:35427浏览

伪类

选择器 例子 例子描述
:active a:active 选择活动的链接。
:checked input:checked 选择每个被选中的<input>元素。
:disabled input:disabled 选择每个被禁用的<input>元素。
:empty p:empty 选择没有子元素的每个 <p> 元素。
:enabled input:enabled 选择每个已启用的<input>元素。
:first-child p:first-child 选择作为其父的首个子元素的每个 <p> 元素。
:first-of-type p:first-of-type 选择作为其父的首个 <p> 元素的每个 <p> 元素。
:focus input:focus 选择获得焦点的<input>元素。
:hover a:hover 选择鼠标悬停其上的链接。
:in-range input:in-range 选择具有指定范围内的值的<input>元素。
:invalid input:invalid 选择所有具有无效值的<input>元素。
:lang(language) p:lang(it) 选择每个 lang 属性值以 “it” 开头的 <p> 元素。
:last-child p:last-child 选择作为其父的最后一个子元素的每个 <p> 元素。
:last-of-type p:last-of-type 选择作为其父的最后一个 <p> 元素的每个 <p> 元素。
:link a:link 选择所有未被访问的链接。
:not(selector) :not(p) 选择每个非 <p> 元素的元素。
:nth-child(n) p:nth-child(2) 选择作为其父的第二个子元素的每个 <p> 元素。
:nth-last-child(n) p:nth-last-child(2) 选择作为父的第二个子元素的每个<p>元素,从最后一个子元素计数。
:nth-last-of-type(n) p:nth-last-of-type(2) 选择作为父的第二个<p>元素的每个<p>元素,从最后一个子元素计数
:nth-of-type(n) p:nth-of-type(2) 选择作为其父的第二个 <p> 元素的每个 <p> 元素。
:only-of-type p:only-of-type 选择作为其父的唯一 <p> 元素的每个 <p> 元素。
:only-child p:only-child 选择作为其父的唯一子元素的 <p> 元素。
:optional input:optional 选择不带 “required” 属性的<input>元素。
:out-of-range input:out-of-range 选择值在指定范围之外的<input>元素。
:read-only input:read-only 选择指定了readonly属性的<input>元素。
:read-write input:read-write 选择不带readonly属性的<input>元素。
:required input:required 选择指定了 “required” 属性的<input>元素。
:root root 选择元素的根元素。
:target #news:target 选择当前活动的 #news 元素(单击包含该锚名称的 URL)。
:valid input:valid 选择所有具有有效值的<input>元素。
:visited a:visited 选择所有已访问的链接。

盒子属性的顺序

顺时针方向: 一般常见到属性 padding, margin, border

  1. p {
  2. /* 四值: 上, 右, 下, 左 */
  3. padding: 5px 10px 15px 20px;
  4. /* 三值: 上, 左右, 下 */
  5. padding: 5px 10px 15px;
  6. /* 双值: 上下, 左右 */
  7. padding: 5px 10px;
  8. /* 单值: 上下左中全相等 */
  9. padding: 10px;
  10. }

样式重置三板斧

  1. * {
  2. /* ? 外边距清零 */
  3. margin: 0;
  4. /* ? 内边距清零 */
  5. padding: 0;
  6. /* ? 盒子计算方式:边框 */
  7. box-sizing: border-box;
  8. }

实例代码

  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>CSS选择器进阶版和样式美化简单版</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. -webkit-box-sizing: border-box;
  13. -moz-box-sizing: border-box;
  14. box-sizing: border-box;
  15. }
  16. .demo {
  17. width: 750px;
  18. margin: 15px auto;
  19. padding: 20px;
  20. border: 5px solid #000;
  21. background-color: #f3998bfa;
  22. background-clip: content-box;
  23. border-bottom-style: dashed;
  24. }
  25. .demo .item {
  26. position: relative;
  27. margin-bottom: 100px;
  28. }
  29. .drop-down {
  30. display: none;
  31. position: absolute;
  32. left: 0;
  33. top: 48px;
  34. padding: 5px 0;
  35. z-index: 899;
  36. min-width: 100%;
  37. border: 1px solid #eee;
  38. background-color: #fff;
  39. border-radius: 2px;
  40. }
  41. .drop-down>li {
  42. padding: 0 10px;
  43. line-height: 36px;
  44. white-space: nowrap;
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. }
  48. .drop-down>li:nth-of-type(even) {
  49. background-color: #eaeaea;
  50. }
  51. .drop-down>.this {
  52. background-color: #5FB878;
  53. color: #fff;
  54. }
  55. #checked:checked+.drop-down {
  56. display: block;
  57. }
  58. label[for="hover"]:hover+.drop-down {
  59. display: block;
  60. }
  61. label {
  62. display: block;
  63. width: 200px;
  64. height: 50px;
  65. line-height: 50px;
  66. border: 1px solid transparent;
  67. padding: 0 18px;
  68. background-color: #03a9f4;
  69. color: #fff;
  70. white-space: nowrap;
  71. text-align: center;
  72. font-size: 14px;
  73. border-radius: 5px;
  74. cursor: pointer;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <div class="demo">
  80. <div class="item">
  81. <label for="checked">点击显示菜单</label>
  82. <input type="checkbox" id="checked" style="display:none;">
  83. <ul class="drop-down">
  84. <li>杭州</li>
  85. <li>宁波</li>
  86. <li class="this">温州</li>
  87. <li>台州</li>
  88. <li>绍兴</li>
  89. </ul>
  90. </div>
  91. <div class="item">
  92. <label for="hover">碰触显示菜单</label>
  93. <ul class="drop-down">
  94. <li>杭州</li>
  95. <li>宁波</li>
  96. <li>温州</li>
  97. <li>台州</li>
  98. <li>绍兴</li>
  99. </ul>
  100. </div>
  101. </div>
  102. </body>
  103. </html>

实例效果图

实例效果图

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议