4

是否可以在 :before 伪类的内容中添加类或 ID?我知道这不起作用,但类似:

#menu {
    height: 100px;
    width: 100px;
}
#menu:before {
    class: "just-before-menu";
}
.just-before-menu {
    background: green;
    height: 100px;
    width: 100px;
}
4

1 回答 1

3

:before 选择器在被选元素的内容之前插入内容。

使用 content 属性指定要插入的内容。

#menu:before {
    content: '';
    background: green;
    height: 100px;
    width: 100px;
}

http://www.w3schools.com/cssref/sel_before.asp

于 2013-01-30T18:55:54.023 回答