この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;
}