gpt4 book ai didi

css - 位置 : fixed overlapping page

转载 作者:太空宇宙 更新时间:2023-11-04 13:47:20 24 4
gpt4 key购买 nike

这是 fiddle .我正在制作一个杂货 list 网络应用程序,并将顶部 div 设置为固定位置。当我这样做时,div 似乎与页面的其余部分重叠。我尝试在 css 中使用两个位置(position: relative; position: fixed),但这不会让 div 保持固定。

CSS(用于 div):

#top {
width: 100%;
height: 40px;
background: #96f226;
text-align: center;
font-size: 30px;
color: #252525;
position: relative;
position: fixed;
}

HTML(对于 div):

<div id='top'>Kitchen List</div>

最佳答案

div 包裹你的内容,并给它 margin-top 到与你的固定内容相同的高度。

SEE DEMO HERE

HTML

<div id='top'>Kitchen List</div>
<br />
<div class="container">
<input type='text' id='input'>
<button id='click'>Add</button>
<ol></ol>
<div id='error'>Please enter a grocery item
<br />
<button id='eb'>Close</button>
</div>
</div>

CSS

.container {
margin-top: 50px;
}

关于css - 位置 : fixed overlapping page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19098294/

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