gpt4 book ai didi

html - 在屏幕底部放置一个 div,而不是页面

转载 作者:技术小花猫 更新时间:2023-10-29 11:50:17 26 4
gpt4 key购买 nike

无论分辨率如何,我都试图在我的网页屏幕底部放置一个灰色条。但是,当我尝试使用不同的分辨率时,它似乎只是上升或下降。有什么办法可以解决这个问题吗?

此外,该栏是使用 div id 标记由 CSS 制成的。

/* HTML*/
<div id="info">Scroll for info</div>

/* CSS */
<style>
#info {
height: 40px;
position: relative;
margin-top: 25%;
background-color: #393838;
opacity:
}
</style>

编辑:我希望它位于屏幕底部,但当我向下滚动时,它会上升到屏幕顶部。

最佳答案

如果你想让它在底部并且一直在底部,你必须使用position: fixed。你可以试试这个:

#info { 
height: 40px;
position: fixed;
bottom:0%;
width:100%;
background-color: #393838;
opacity: 1;
}

http://jsfiddle.net/rX4nd/1/

关于html - 在屏幕底部放置一个 div,而不是页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20276265/

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