我在我的网站上使用以下Javascript noscript消息,当用户禁用他的JS时:
<noscript>
For full functionality of this site it is necessary to enable <b>JavaScript</b>.
Here are the <a href="http://www.enable-javascript.com/" target="_blank">
instructions how to enable JavaScript in your web browser</a>.
</noscript>
我的问题:
目前处于绝对顶端。我想把它移到顶部:20px ......
我尝试将文本包装在距离顶部偏移的div中,但只有文本与div一起移动而不是noscript
标记应用的红色边框样式(我没有应用任何样式到noscript
,它有自己的边框)
答案 0 :(得分:3)
使用CSS:
noscript
{
position: fixed;
top: 20px;
}