gpt4 book ai didi

html - 希望内部 DIV 以 100% 高度和页脚在左侧面板中滚动

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:35 25 4
gpt4 key购买 nike

对于商店定位器 map ,我有一个左侧面板,顶部有搜索,底部有页脚,我试图在左侧正文的可滚动 DIV 内显示搜索结果。

我不确定如何:

  1. 让页脚DIV粘在底部
  2. 当列表中的结果太多时,让“结果”DIV 滚动。

Scrolling DIV issues

如果不为结果 DIV 设置固定高度,这似乎可行,有什么办法可以将高度设置为 100%?

这是我的 JSFiddle:http://jsfiddle.net/mkov/X56Bz/

HTML

<div id="panel">
<div id="search">
<div>Find your closest store</div>
<input id="input-search" onClick="SelectAll('input-search');" type="text" class="placeholder" placeholder="Enter a suburb or postcode">
<span class="button" ><input value="Search" class="button" type="submit" tabindex="15"></span>
</div>
<div id="results" class="content">
<ol>
<li>Map Item 1A</li>
<li>Map Item 1B</li>
<li>Map Item 1C</li>
<li>Map Item 1D</li>
<li>Map Item 1E</li>
</ol>
</div>
<div id="footer">Footer content goes here</div>
</div>
<div id="map-canvas"></div>

CSS

html,body { 
padding:0;
margin:0;
height:100%;
overflow: hidden;
font-family: Helvetica;
}
#panel {
position: relative;
width:300px;
margin-left: 6px;
margin-top: 6px;
}

#map-canvas {
background:white;
position:absolute;
top:0;
left:320px;
right:0;
bottom:0;
margin: 6px;
border: 1px solid #D2E6F0;
border-radius: 3px;
}

#search {
width: 300px;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background: #F2F9FB;
border: 1px solid #D2E6F0;
height: 60px;
padding-left: 10px;
padding-top: 10px;

}

#results {
margin-top: 5px;
position: relative;
width: 300px;
color: #003464;
border: 1px solid #D2E6F0;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
padding-left: 10px;
overflow-x: auto;

}

#footer {
background-color: #003464;
margin-top: 5px;
position: relative;
width: 300px;
color: #FFFFFF;
border: 1px solid #003464;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
padding-left: 10px;
}}

最佳答案

CSS3 来拯救,特别是“calc”。

Here是一个更新的 fiddle

http://jsfiddle.net/X56Bz/3/

你需要让你的#panel 100% 高度并且#results 需要是 100% 高度减去你的#search 和#footer 高度

我添加了以下...

#panel {
height: 100%;
}

#results {
/* Firefox */
height: -moz-calc(100% - 115px);
/* WebKit */
height: -webkit-calc(100% - 115px);
/* Opera */
height: -o-calc(100% - 115px);
/* Standard */
height: calc(100% - 115px);
}

关于html - 希望内部 DIV 以 100% 高度和页脚在左侧面板中滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24606854/

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