是否可以在您的:before伪类之前的内容中添加类或ID?我知道这不起作用,但是像:
#menu {
height: 100px;
width: 100px;
}
#menu:before {
class: "just-before-menu";
}
.just-before-menu {
background: green;
height: 100px;
width: 100px;
}
答案 0 :(得分:3)
:选择器之前在所选元素的内容之前插入内容。
使用content属性指定要插入的内容。
#menu:before {
content: '';
background: green;
height: 100px;
width: 100px;
}