gpt4 book ai didi

CSS 100% 高度主体和元素

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

我在 100% 的整体布局中使我的元素之一 100% 时遇到问题。

我已经尝试了不同的定位解决方案,但我最终要么隐藏了 float 在底部页脚后面的内容,要么内容最终进入了页脚后面,并在页脚之后继续。

这是我的页面布局。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">

<head>
<style>
*{margin:0}
html,body{margin:0; padding:0; height:100%}
.wrapper{position:relative; margin:0 auto -200px; height:auto !important; height:100%; min-height:100%}
.container{width:930px; margin:0 auto; text-align:left}
.right{float:right; width:680px; background:#FFF; margin:60px 10px 0 0; padding:0}
.left{float:left; width:240px}
.content{padding:10px}
.footer{position:absolute; width:100%}
.footer,.push{height:200px}
</style>
</head>

<body>

<div class="wrapper">
<div class="container">
<div id="left">
left
</div>
<div class="right">

<div class="content">
content
</div>

</div>
<div class="push"></div>
</div>
<div class="footer">
footer
</div>
</div>

</body>
</html>

页面的布局为 100% 高度,底部的页脚仅适用于具有类名内容的 div,我希望它也为 100%,如果内容到达页脚,则将页脚进一步向下推,不会消失。

非常感谢任何帮助。

http://img686.imageshack.us/img686/7725/screenshotbj.png

最佳答案

回答animuson:其实下面的代码是IE6支持所必需的:

min-height: 100%; /* real browsers */
height: auto !important; /* real browsers */
height: 100%; /* IE6: treated as min-height*/

IE6 不理解 !important,但它会将高度视为最小高度。因此,要同时支持 IE6 和现代浏览器,您必须使用完全相同的代码(顺序很重要)。

关于CSS 100% 高度主体和元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2982180/

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