Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/88.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 如何设置浏览器滚动条以滚动页面的一部分?(高于隐藏的页脚部分)就像http://i-donline.com/_Html_Css - Fatal编程技术网

Html 如何设置浏览器滚动条以滚动页面的一部分?(高于隐藏的页脚部分)就像http://i-donline.com/

Html 如何设置浏览器滚动条以滚动页面的一部分?(高于隐藏的页脚部分)就像http://i-donline.com/,html,css,Html,Css,如何设置浏览器滚动条以滚动页面的一部分?高于页脚的部分隐藏如下 有一个叫做iScroll的库。只用于这类事情。你可以看看,我想会有帮助的。事实上我已经用过很多次了。工作起来很有魅力。以下是链接: 谢谢,但我想知道网站是否仍在使用浏览器滚动条你可以这样配置它。我检查了iscroll水平演示,但如果拉动窗口大小,内容滚动条将显示并闪烁?我发现,两者都没有设置页脚。这隐藏了包裹溢出,将接近我想要的,但浏览器滚动条距离太长。。。 .header{ position: fixed; left: 0; to

如何设置浏览器滚动条以滚动页面的一部分?高于页脚的部分隐藏如下


有一个叫做iScroll的库。只用于这类事情。你可以看看,我想会有帮助的。事实上我已经用过很多次了。工作起来很有魅力。以下是链接:


谢谢,但我想知道网站是否仍在使用浏览器滚动条你可以这样配置它。我检查了iscroll水平演示,但如果拉动窗口大小,内容滚动条将显示并闪烁?我发现,两者都没有设置页脚。这隐藏了包裹溢出,将接近我想要的,但浏览器滚动条距离太长。。。
.header{
position: fixed;
left: 0;
top: 0;
width: 1000px;
height: 100px;
background:  blue;
z-index: 1;
}
.contentwrap{
position: absolute;
left: 0;
top: 100px;
width: 1000px;
height: 250px;
background:  ;
}
.footer{
position: fixed;
left: 0;
top: 350px;
width: 1000px;
height: 300px;
background:  blue;
}
.row{
position: relative;
left: 0;
top: 0;
width: 800px;
height: 250px;
border: purple 1px solid;
background: gray;
}​