在Pseudo Class之前添加ID:

时间:2013-01-30 18:09:33

标签: 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;
}

1 个答案:

答案 0 :(得分:3)

  

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

     

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

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

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