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