我的" JS-block验证器"我遇到了问题。它应该覆盖所有页面并显示此消息,但在我的项目中还显示其背后的其他文件。可能存在多个!important
的问题吗?
`
body:not(div#wojs){
display:none !important;
}
#wojs{
width:100%;
height:100%;
display:block !important;
background-color: black;
position:absolute;
top:0;
left:0;
}
#wojs p {
font-size: 2.5em;
color: red;
margin: 10% auto;
}

<div id="wojs">
<p>JavaScript is disabled. Please, Allow it and refresh.</p>
</div>
&#13;
`