隐藏这个div的css代码是什么
<div id="x_afc_x" class="section ">
我需要隐藏它,因为它会自动添加到我的页面中。
你可以用
#x_afc_x { display: none; }
只需定义您的 #x_afc_x
display:none;
像这样
#x_afc_x{
display:none;
}
或者部分选项是这个
#x_afc_x.section{
display:none;
}
试试这个,
<div id="x_afc_x" class="section " style="display:none;">
#x_afc_x
{
display:none
}
或者
#x_afc_x
{
visibility:hidden;
}