Blogger Information
Blog 5
fans 0
comment 0
visits 3453
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
细说状态伪类、选择器优先级与属性简写
Jason药师
Original
882 people have browsed it

状态伪类

状态伪类主要用于 链接和表单 两个方面

1、链接

.html

  1. <!-- 1. 链接 -->
  2. <a href="https://www.php.cn">php中文网</a>

链接有四种状态:顺序是固定的

.css

  1. /* 1. 默认,没有访问/点击 :link */
  2. a:link {
  3. color: blue;
  4. text-decoration: none;
  5. }
  6. /* 2. 已访问过的状态 :visited */
  7. a:visited {
  8. color: violet;
  9. }
  10. /* 3. 悬停的状态 :hover */
  11. a:hover {
  12. color: red;
  13. text-decoration: underline;
  14. }
  15. /* 4. 激活,当鼠标点击压下去的时候 :active */
  16. a:active {
  17. color: green;
  18. }

2、表单

.html

  1. <!-- 2. 表单 -->
  2. <form action="">
  3. <p>用户名:<input type="text" name="" value="admin" readonly autofocus></p>
  4. <p>邮箱:<input type="email" name="" value="" required></p>
  5. <p>密码:<input type="password" name="" value="123456" disabled></p>
  6. <p><button>提交</button></p>
  7. </form>

.css

  1. /* 只读的:不可被用户编辑的状态(如锁定的文本输入框) */
  2. input:read-only {
  3. background-color: yellow;
  4. }
  5. /* 必选的:这个伪类对于高亮显示在提交表单之前必须具有有效数据的字段非常有用 */
  6. input:required {
  7. background-color: lightgreen;
  8. }
  9. /* 禁用的:如果一个元素不能被激活(如选择、点击或接受文本输入)或获取焦点,则该元素处于被禁用状态 */
  10. input:disabled {
  11. background-color: #eee;
  12. }
  13. /* 获得焦点的元素(如表单输入)。当用户点击或触摸元素或通过键盘的 “tab” 键选择它时会被触发 */
  14. input:focus {
  15. background-color: red;
  16. }

选择器的优先级

  1. 当选择器相同的时,与书写顺序有关,后面的样式覆盖前面的
  2. 当选择器不同时,与优先级相关,级别高的覆盖级别低
    • id选择器 > class选择器 > 标签 选择器

选择器的优先级的提权方式

CSS权重

标签名 权重值
! important infinity 正无穷
行间样式 1000
id 选择器 100
class 选择器、属性选择器、伪类选择器 10
标签选择器、伪元素选择器 1
通配符选择器 0
在计算机中,正无穷+1 > 正无穷
如果权重值一样(优先级一样)、会显示后面的 。就是后来后到,谁在后面,谁(后面的)覆盖前面的—后面的会覆盖前面的
在权重中,是256进制,是从0到255后变成1。所以这里的 1000 不是一千,100不是一百

.html

  1. <h2 class="on" id="foo">hello php.cn</h2>

优先级

  1. 声明顺序对优先级的影响
    1. h2 {
    2. color: gold;
    3. }
    4. /* 在后面有一个相同的声明,根据源码的顺序,后面有效 */
    5. h2 {
    6. color: green;
    7. }
  1. 选择器的类型对优先级的影响
    ```css
    .on {
    color: violet
    }

/ h2 无效果,表示class的优先级大于 tag(标签) /
h2 {
color: green;
}

/ 如果仍想提升选择器的优先级,此时到了class级,我们应该用id级 /

foo {

  1. color: blue;

}

/ 结论: id > class > tag(标签) /

  1. ### 提权方式
  2. - 根据 id > class > tag(标签) 的结论,有一个简单的计算公式: [id选择器的数量, class选择器的数量, tag选择器的数量] (0,0,0)
  3. - tag(标签) 级向 class 级进位, class 级向id级进位
  4. 1、标签选择器
  5. ```css
  6. /* [0,0,1] */
  7. h2 {
  8. color: red;
  9. }
  10. /* [0,0,2] */
  11. body h2 {
  12. color: skyblue;
  13. }
  14. /* [0,0,2] > [0,0,1] 显示的颜色是 skyblue */
  15. /* 如果想继续提权,选择一个只要比body h2 权重高的选择器组合就可以了 */
  16. /* [0,0,3] */
  17. html body h2 {
  18. color: skyblue;
  19. }
  20. /* [0,0,2] */
  21. body h2 {
  22. color: red;
  23. }

2、class选择器

  1. /* 因为html是根元素,上面没有比他更大的,根据 id > class > tag(标签) 的结论,我们可以用 class 进一步提权 */
  2. /* [0,1,0] */
  3. .on {
  4. color: skyblue;
  5. }
  6. /* [0,0,3] */
  7. html body h2 {
  8. color: red;
  9. }
  10. /* [0,1,0] > [0,0,3] 显示的颜色是 skyblue */

3、标签选择器与class选择器的组合

  1. /* [0,0,3] */
  2. html body h2 {
  3. color: red;
  4. }
  5. /* [0,1,0] */
  6. .on {
  7. color: skyblue;
  8. }
  9. /* [0,1,1] */
  10. h2.on {
  11. color: red;
  12. }
  13. /* [0,1,2] */
  14. body h2.on {
  15. color: skyblue;
  16. }
  17. /* [0,1,3] */
  18. html body h2.on {
  19. color: teal;
  20. }
  21. /* [0,2,0] */
  22. .on.off {
  23. color: red;
  24. }
  25. /* [0,0,3] < [0,1,0] < [0,1,1] < [0,1,2] < [0,1,3] < [0,2,0] */

4、id 选择器

  1. /* [0,2,0] */
  2. .on.off {
  3. color: red;
  4. }
  5. /* [1,0,0] */
  6. #foo {
  7. color: teal;
  8. }
  9. /* [1,0,1] */
  10. h2#foo {
  11. color: red;
  12. }
  13. /* [1,0,2] */
  14. body h2#foo {
  15. color: blue;
  16. }
  17. /* [1,0,3] */
  18. html body h2#foo {
  19. color: red;
  20. }
  21. /* [1,1,0] */
  22. #foo.on {
  23. color: seagreen;
  24. }
  25. /* [0,2,0] < [1,0,0] < [1,0,1] < [1,0,2] < [1,0,3] < [1,1,0] */

属性的简写

1、字体属性

  1. <h2 class="title">php中文网</h2>

font 简写属性在一个声明中设置所有字体属性

  1. .title {
  2. /* 字体属性 */
  3. /* font-family: sans-serif;
  4. font-size: 24px;
  5. font-style: italic;
  6. font-weight: lighter; */
  7. /* 简写 */
  8. font: italic lighter 36px sans-serif;
  9. }

2、背景属性

background 简写属性在一个声明中设置所有的背景属性。

  1. body {
  2. background-color: cornsilk;
  3. background-image: url(https://img.php.cn/upload/course/000/000/001/5fbb84ba39b3a182.jpg);
  4. background-repeat: no-repeat;
  5. background-size: 300px;
  6. background-position: top;
  7. /* 简写 */
  8. background: url(https://img.php.cn/upload/course/000/000/001/5fbb84ba39b3a182.jpg) no-repeat;
  9. }

3、盒模型的属性缩写

  1. <html lang="zh-CN">
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>盒模型的属性</title>
  5. <style>
  6. .box {
  7. width: 200px;
  8. height: 200px;
  9. background-color: lightgreen;
  10. box-sizing: border-box;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <div class="box"></div>
  16. </body>
  17. </html>

1、边框

border 简写属性在一个声明设置所有的边框属性。

  1. .box {
  2. /* 边框 */
  3. /* 每个边框可以设置三个属性: 宽度,样式,颜色 */
  4. /* border-top-width: 5px;
  5. border-top-color: red;
  6. border-top-style: solid; */
  7. /* 上边框简写 */
  8. /* border-top: 5px red solid; */
  9. border-top: rgb(255, 0, 255) solid 5px;
  10. /* 下边框简写 */
  11. border-bottom: 10px red dashed;
  12. /* 边框简写 */
  13. border: 5px solid #000;
  14. }

2、内边距

padding 简写属性在一个声明中设置所有内边距属性。

  1. .box {
  2. /* 内边距 */
  3. /* padding: 上 右 下 左; 按顺时针方向*/
  4. padding: 5px 10px 15px 20px;
  5. /* 页面看不到是因为padding是透明的,且背景色会自动扩展到padding */
  6. /* 将背景色裁切到到内容区 */
  7. background-clip: content-box;
  8. /* 当左右相等,而上下不相等,使用三值语法 */
  9. padding: 10px 20px 15px;
  10. /* 当左右相等,上下也相等,使用二值语法 */
  11. padding: 10px 30px;
  12. /* 如果四个方向全相等,使用单值语法 */
  13. padding: 10px;
  14. /* 总结,当使用三值和二值时,只需要记住第二个永远表示左右就可以了 */
  15. }

3、外边距

margin 简写属性在一个声明中设置所有外边距属性。该属性可以有 1 到 4 个值。

  1. .box {
  2. /* 外边距:控制多个盒子之间的排列间距 */
  3. /* 四值,顺时针,上右下左 */
  4. margin: 5px 8px 10px 15px;
  5. /* 三值,左右相等,上下不等 */
  6. margin: 10px 30px 15px;
  7. /* 二值,左右相等,上下也相等 */
  8. margin: 10px 15px;
  9. /* 单值,四个方向全相等 */
  10. margin: 8px;
  11. }
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post