如何设置溢出:隐藏;在jQuery Mobile页面上

时间:2013-11-26 17:10:26

标签: jquery html css jquery-mobile

我希望我的应用程序中的某些页面具有属性溢出:隐藏添加到它们,即如果某些内容不适合页面,则它会被切断页面而用户无法向下滚动。现在以下css工作:

html,
body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

问题是它会切断所有页面上的所有内容,但我只想在特定页面上使用它。我所拥有的页面称为sellbookpage。因此我使用了以下css:

#sellbookpage{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

现在我知道上面的css没有应用于页面(我在浏览器中检查了元素)。我真的不确定如何在jquery mobile

中为一个页面设置overflow:hidden

0 个答案:

没有答案