当前位置:   article > 正文

css系列之伪类_css伪类

css伪类

一.欢迎来到我的酒馆

        讨论css伪类
在这里插入图片描述

二.什么是伪类

        伪类(pseudo class)是一种选择器,表示元素的特殊状态。伪类由" : 伪类名"构成。
css语法

selector : pseudo_class {
		property : value;
}
  • 1
  • 2
  • 3

例如:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        button:hover{
            background-color: pink;
        }

    </style>
</head>
<body>
    <button>这是一个按钮</button>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

当鼠标悬停在button上面的时候,触发hover伪类,将button的背景颜色设置为pink。

三.常见的伪类

  1. :first-child伪类。:first-child伪类用于选中元素的第一个子级元素。
div : first-child{
	background-color: blue;
}
  • 1
  • 2
  • 3
  1. :last-child伪类。:last-child伪类用于选中元素的最后一个子级元素。
div : last-child{
	background-color: blue;
}
  • 1
  • 2
  • 3
  1. :nth-child(n)伪类。:nth-child()伪类用于选中元素的第n个子级元素。
/* 选中p标签下的i标签中的第二个i标签 */
p i:nth-child(2){
   color: blue;
}
  • 1
  • 2
  • 3
  • 4
  1. ::after伪类。::after伪类用于在一个元素之后添加一个content,添加的内容为属性值。
/* 在p元素的结尾添加上一个content,添加的内容为属性值 */
p::after{
    content: "added ";
    color: green; /*给content添加颜色样式 */
    font-weight: bold;
    background-color: orange;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  1. ::before伪类。::before伪类用于在一个元素之前添加一个content,添加的内容为属性值。
/* 在button元素的开头添加上一个content,添加的内容为属性值 */
button::before{
    content: "before ";
}
  • 1
  • 2
  • 3
  • 4

四.写在最后

        伪类暂时先介绍到这里,如果大家对伪类有疑问或者有什么问题,欢迎大家在博客下方留言。如果有什么错误或者有待提高的地方,欢迎指正。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/845988
推荐阅读
相关标签
  

闽ICP备14008679号