gpt4 book ai didi

html - 如何使横幅在加载时始终出现在屏幕底部?

转载 作者:行者123 更新时间:2023-11-28 05:22:35 26 4
gpt4 key购买 nike

对于我的个人网站,我试图在加载时在屏幕底部显示一个带有我名字的横幅,无论其大小如何。

不过我不希望横幅跟随屏幕。

这是我正在使用的横幅 CSS/HTML:

.header-card {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 20%;
margin: auto;
background: rgba(0, 0, 0, 0.5);
color: white;
}
<div class="header-card">
<h1>My Name</h1>
</div>

最佳答案

在浏览器窗口的底部:

.header-card {
position: fixed; //fixed is absolute to a browser
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
color: white;
}

<div class="header-card">
<h1>My Name</h1>
</div>

在页面底部(或父级“相对”元素):

.header-card {
position: absolute; // absolute is absolute to a relative element
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
color: white;
}

<div class="header-card">
<h1>My Name</h1>
</div>

关于html - 如何使横幅在加载时始终出现在屏幕底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36558051/

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