Eli*_*ray 6 css pseudo-element
是否可以在 :before 伪类的内容中添加类或 ID?我知道这不起作用,但类似:
#menu {
height: 100px;
width: 100px;
}
#menu:before {
class: "just-before-menu";
}
.just-before-menu {
background: green;
height: 100px;
width: 100px;
}
Run Code Online (Sandbox Code Playgroud)
:before 选择器在所选元素的内容之前插入内容。
使用 content 属性指定要插入的内容。
#menu:before {
content: '';
background: green;
height: 100px;
width: 100px;
}
Run Code Online (Sandbox Code Playgroud)
http://www.w3schools.com/cssref/sel_before.asp