赞
踩
讨论css伪类。
伪类(pseudo class)是一种选择器,表示元素的特殊状态。伪类由" : 伪类名"构成。
css语法
selector : pseudo_class {
property : value;
}
例如:
<!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>
当鼠标悬停在button上面的时候,触发hover伪类,将button的背景颜色设置为pink。
div : first-child{
background-color: blue;
}
div : last-child{
background-color: blue;
}
/* 选中p标签下的i标签中的第二个i标签 */
p i:nth-child(2){
color: blue;
}
/* 在p元素的结尾添加上一个content,添加的内容为属性值 */
p::after{
content: "added ";
color: green; /*给content添加颜色样式 */
font-weight: bold;
background-color: orange;
}
/* 在button元素的开头添加上一个content,添加的内容为属性值 */
button::before{
content: "before ";
}
伪类暂时先介绍到这里,如果大家对伪类有疑问或者有什么问题,欢迎大家在博客下方留言。如果有什么错误或者有待提高的地方,欢迎指正。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。