博客列表 >伪类选择器和盒模型常见属性

伪类选择器和盒模型常见属性

Pharaoh
Pharaoh原创
2022年07月08日 01:20:52293浏览

伪类选择器

常用伪类选择器我们简单分为三种

  • 结构伪类
    • :nth-of-type(n)选择器匹配同类型中的第n个同级兄弟元素。参数是元素的索引。索引从1开始
    • n可以是一个数字,一个关键字,或者一个公式
    • 使用公式(an+ b).描述:a代表一个循环的大小,N是一个计数器(从0开始),以及b是偏移量
  • 状态伪类
  • 链接伪类
名称 用法
结构伪类 li:nth-of-type();p:nth-child()
状态伪类 input:disabled
链接伪类 a:link;a:hover
  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. <link rel="stylesheet" href="css/style.css">
  9. </head>
  10. <body>
  11. <ul>
  12. <li>item1</li>
  13. <li>item2</li>
  14. <li>item3</li>
  15. <li>item4</li>
  16. <li>item5</li>
  17. <li>item6</li>
  18. <li>item7</li>
  19. <li>item8</li>
  20. </ul>
  21. </body>
  22. </html>
  23. /* CSS文件 */
  24. /* 选择第一个 */
  25. li:nth-of-type(1) {
  26. background-color: blue;
  27. }
  28. /* 选择最后一个 */
  29. li:nth-last-of-type(1) {
  30. border: 5px solid violet;
  31. }
  32. /* 选择全部 */
  33. li:nth-of-type(n) {
  34. background-color: blueviolet;
  35. }
  36. /* 选择奇数 */
  37. li:nth-of-type(2n+1) {
  38. background-color: yellow;
  39. }
  40. /* 选择前三个 */
  41. li:nth-of-type(-n+3) {
  42. background-color: cornflowerblue;
  43. }
  44. /* 选择最后三个 */
  45. li:nth-last-of-type(-n+3) {
  46. background-color: aqua;
  47. }
  48. /* 选择偶数 */
  49. li:nth-of-type(even) {
  50. color: brown;
  51. }
  52. /* 选择奇数 */
  53. li:nth-of-type(odd) {
  54. border: 5px solid red;
  55. }

盒模型常见属性

盒模型常用属性有

  • margin:外边距
  • border:边框
  • padding:内边距
  • box-sizing:定义如何计算一个元素的总宽度和总高度,主要设置是否需要加上内边距(padding)和边框等
  • background-clip:指定背景绘制区域
  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. <link rel="stylesheet" href="css/style2.css">
  9. </head>
  10. <body>
  11. <div class="box">我是盒子</div>
  12. </body>
  13. </html>
  14. /* CSS代码 */
  15. .box {
  16. height: 150px;
  17. width: 200px;
  18. background-clip: content-box;
  19. border: 3px dashed yellowgreen;
  20. box-sizing: border-box;
  21. margin: 0px;
  22. padding: 5px;
  23. background-color: blueviolet;
  24. color: burlywood;
  25. }

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