本文介绍了Noscript标签的主体样式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果未启用任何JavaScript,我希望我的身体具有overflow:hidden
(无滚动条).
If no JavaScript is enabled, I want my body to have overflow:hidden
(no scrollbars).
我该如何解决?可以在< head>内使用noscript标记并在其中设置特定的样式吗?
How can I solve this? Is it possible to use a noscript tag inside of <head> and set specific styles inside of it?
推荐答案
我很确定
<noscript>
<style type="text/css">
body {
overflow:hidden;
}
</style>
</noscript>
您的<head>
中的
会完成这项工作.
in your <head>
would do the job.
但是,正如另一篇文章所述,最好使用CSS来实现此目的,并为使用JavaScript的浏览器启用溢出功能.
But as stated in the other post, it may be better to use CSS for this purpose, and enable overflow for browsers with JavaScript.
这篇关于Noscript标签的主体样式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!