gpt4 book ai didi

html - 固定高度容器上没有滚动图像背景

转载 作者:行者123 更新时间:2023-11-28 13:19:36 25 4
gpt4 key购买 nike

我正在使用 Twitter Bootstrap 2.2.2。我有一个具有固定高度(基于用户窗口高度)并为其激活滚动条的容器。

问题出在容器的图像背景上:即使我将其设置为滚动,它也像固定的一样工作。

这是我的 CSS:

html {
width:100%;
height:100%;
overflow:hidden;
}
#tb1 {
width:100%;
height:40px;
background-color:blue;
}
#tb2 {
width:100%;
height:30px;
background-color:red;
}
#container {
/*overflow-y:hidden;
height:400px;*/
background:url(http://placehold.it/350x150) no-repeat scroll transparent;
position:absolute;
top:70px;
left:0;
right:0;
bottom:0;
}
#row1 {
padding:10px;
overflow-y:scroll;
max-height:100%;
}

HTML:

<html>

<head>
<link rel="stylesheet" media="screen" href="//cdn.a973c.com/scripts/bootstrap/2.2.2/bootstrap-2.2.2.css">
<link rel="stylesheet" media="screen" href="//cdn.a973c.com/scripts/bootstrap/2.2.2/bootstrap-responsive-2.2.2.css">
</head>

<body>
<div id="tb1">tb1</div>
<div id="tb2">tb2</div>
<div id="container" class="container-fluid">
<div class="row-fluid" id="row1" style="height:1500px;">
<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

<h1>content</h1>

</div>
</div>
</body>

</html>

还有一个 jsFiffle

我的代码有什么问题?

感谢您的帮助!

编辑:当我取消为#row1 设置高度时,我的背景正在正确滚动...

最佳答案

错误代码是:

 background:url(http://placehold.it/350x150) no-repeat scroll transparent;//No .png provied

您的 css 中未提供文件的扩展名。它应该如下所示

正确的代码

background:url(http://placehold.it/350x150.png) repeat scroll transparent;

如我所见,我刚刚尝试使用 .png 扩展名,它可以正常工作,您需要通过扩展名指定文件类型

这是 fiddle

关于html - 固定高度容器上没有滚动图像背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14745638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com