noscript风格没有工作

时间:2017-04-23 18:52:16

标签: html css noscript

嘿我正在制作一个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

1 个答案:

答案 0 :(得分:2)

.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>