溢出隐藏添加在body标签中删除滚动条

时间:2013-10-02 09:50:04

标签: javascript html asp.net css

我不知道为什么但是由于某些广告代码或任何其他原因,隐藏的溢出是在主体中添加从页面中删除滚动条。

<body style="margin: 0; overflow: hidden">

我如何防止这种或我们如何覆盖溢出:隐藏到溢出:自动

2 个答案:

答案 0 :(得分:1)

您可以使用!important;

覆盖此内容

在你的css文件中:

body {
    overflow: visible !important;
}

答案 1 :(得分:1)

在你的CSS中:

body {
    overflow:auto !important;
}

这应该始终覆盖内联元素。