嘿,我正在制作一个html文档,我想拥有它,以便当某人访问该页面并启用noscript时,它将使整个页面变黑并显示白色文字,表示“启用JavaScript”
这是我的代码:



<noscript>
<style>
.noscript{
   width: 4000px;
   height: 4000px;
   position: fixed;
   top: 50%;
   left: 60%;
  transform: translate(-50%, -50%);
   background: black;
}
.noscriptext{
width: 400px;
   height: 100px;
   position: fixed;
   top: 40%;
   left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; font-size: 100%;
  color: white;
}

</style>

<div class="noscriptext"><h1>to use this you must enable javascript</h1></div>
</noscript>

<div class="noscript">&nbsp;</div>





但是请问它没有用吗?
我尝试了这个:
Body styling for a noscript tag?,但是什么也没有。
图片:http://imgur.com/a/KRqXS

最佳答案

.noscript之后是. noscriptext,所以它显示在顶部。将.noscript放在.noscriptext之前,或在z-index上使用.noscriptext

但是您可以将其简化很多,我会改用它。

<noscript>
<style>
.noscriptext {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
</style>
<div class="noscriptext"><h1>to use this you must enable javascript</h1></div>
</noscript>

10-02 02:54