gpt4 book ai didi

html - 带有额外元素的 CSS 粘性页脚

转载 作者:太空宇宙 更新时间:2023-11-03 19:10:32 24 4
gpt4 key购买 nike

我正在尝试为我的艺术作品集创建一个自己的网站,我遇到了 http://ryanfait.com/sticky-footer/ .我无法为其添加额外的元素。

我有以下 HTML 结构:

<html>
<head>
<link rel="stylesheet" href="style.css" ... />
<link rel="stylesheet" href="layout.css" ... />
</head>
<body>
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
<img src="image.png>
</div>
</body>

以及以下 style.css:

.wrapper {
position: relative;
width: 800px;
margin: 0 auto -50px;
}

.footer {
position: relative;
width: 100%;
margin: 0 auto;
padding: 0;
background-color:#000000;
text-align:center;
}

.footer img {
position: relative;
width: 400px;
top: -238px;
margin: 0 auto;
}

.footer a {
color: #fff;
text-decoration: underline;
border: 0;
}

.footer p {
position: absolute;
left: 0;
bottom: 4px;
width: 100%;
padding: 0;
color: #fff;
font: 0.8em arial,sans-serif;
}

与 layout.css:

* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -50px; /* the bottom margin is the negative value of the footer's height */}
.footer { height: 50px; /* .push must be the same height as .footer */}

.push {
height: -100px; /* .push must be the same height as .footer */
}

我将图像设置为负片,以便在调整窗口大小时它会与主要内容重叠。另外,我想要图像正下方的粘性底部“边框”。但是,无论我如何处理边距或高度,我都无法摆脱上述代码创建的负空间。你有什么建议吗?

**我想通了。粘性页脚教程制作了一个停在主体边界的粘性页脚。我想要的是一个粘性页脚,它是一个顶部“层”,它将覆盖主体并在底部有一个边框元素。我不应该使用“top:-238px”。相反,我在 html 和 css 中的页脚下嵌套了一个类。

<div class="footer">        
<img src="Image.png" width="400" height="238" />
<div class="bottom-border">
<p>Copyright (c) 2008</p>
</div>
</div>

.footer img {
position: relative;
width: 400px;
margin: 0 auto;}

.bottom {
position: relative;
width: 100%;
height: 20px;
margin: 0 auto 0;
padding: 0;
text-align:center;
background-color: #000000;}

然后,根据“layout.css”注释中粘性页脚的说明,我保留了 .wrapper、.footer、.push 高度。**

最佳答案

有点晚了,但我还是可以回答 :) 出现问题是因为即使您的图像相对位于页脚上方,它仍然占据页面中的相同位置。你想使用 position:absolute;

Here it is working

我做了以下更改:

.footer img { 
position:absolute;
}

.footer p {
position: relative;
height:4em;
}

使用 position:absolute; 会将元素放置在最后一个非静态(默认)元素的位置,并将其从“页面流”中移除。所以在这种情况下,它将它放在 .footer 并将其从页面中取出,这样它就不再占用任何空间。

编辑:我还通过将其更改为绝对来打破居中,因为 margin:0 auto; 不会在 position:absolute; 元素上工作。添加这些规则来解决这个问题。

.footer img {
left:50%;
margin-left:-200px;
}

关于html - 带有额外元素的 CSS 粘性页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8482618/

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