gpt4 book ai didi

html - 需要版权才能留在底部

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

这是 html:

<div id="terms" class="terms">
<center><a href="terms.html">Terms & Conditions</a>
</div>

CSS:

# terms {
width: 100%;
position: absolute;
bottom: 0;

}

.terms {
width: 100%;
position: relative;
bottom: 5px;
}

我做错了什么?我已经尝试了大约 50 种不同的 html 和 css 变体以使条款保留在页面底部,但它漂浮在页面中央。它会从顶部到中间再到左右,但我无法让它 float 到页面底部!整个页面设置为两个 float 列 .right.left

请帮忙!!谢谢!

最佳答案

我已经为你设置了一个 fiddle :

http://jsfiddle.net/uh53X/1/

修改你的代码如下:

HTML

<div class="terms">
<center><a href="terms.html">Terms & Conditions</a></center>
</div>

CSS

div.terms{
display:block;
position:absolute;
bottom:0;
right:0;
width:100%;
background:#eee;
border:1px solid #ddd;
}

希望这对您有所帮助。

关于html - 需要版权才能留在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10679650/

25 4 0
文章推荐: css - 如何在调整大小时阻止
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com