是否可以在 :before 伪类的内容中添加类或 ID?我知道这不起作用,但类似:
#menu {
height: 100px;
width: 100px;
}
#menu:before {
class: "just-before-menu";
}
.just-before-menu {
background: green;
height: 100px;
width: 100px;
}
是否可以在 :before 伪类的内容中添加类或 ID?我知道这不起作用,但类似:
#menu {
height: 100px;
width: 100px;
}
#menu:before {
class: "just-before-menu";
}
.just-before-menu {
background: green;
height: 100px;
width: 100px;
}