说我有以下CSS :after
<div class="bob"></div>
.bob:after{
background:#ff0000;
height:10px;
width:10px;
}
是否可以在使用第二课后删除它?
<div class="bob geff"></div>
.bob:after{
background:#ff0000;
height:10px;
width:10px;
}
.bob.geff:after{
background:none;
height:0px;
width:0px;
}
答案 0 :(得分:1)
除非您为:after
分配content
,否则none
不会产生任何影响。内容的默认值为.bob:after{
content:'';
background:#ff0000;
display: inline-block;
height:10px;
width:10px;
}
.bob.geff:after{
content: none;
}
,因此
{{1}}
应该有效。 fiddle