网页中如何让div高度适应不同的分辨率
网页分为header,content,footer三部分,header和content的高度不变,如何让footer的高度自动适应不同的分辨率。我知道用js可以做,但是j...
网页分为header,content,footer三部分,header和content的高度不变,如何让footer的高度自动适应不同的分辨率。我知道用js可以做,但是js我不擅长,请高手们帮帮忙,任何方法都可以,谢谢啦!!!
展开
展开全部
不用JS
其实非常简单
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<style>
html {font-size:12px;height:100%; overflow:hidden;border:0;}
body{color:#555555; font-family:Arial, Helvetica;height:100%; overflow:hidden; margin: 0;padding: 0;}
div{ height:100%;border:1px solid #000; width:150px; }
</style>
<body>
<div>
</div>
</body>
</html>
再来一个 分给我吧
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<style>
html {font-size:12px;height:100%; overflow:hidden;border:0; height:100%}
body{color:#555555; font-family:Arial, Helvetica;height:100%; overflow:hidden; margin: 0;padding: 0;}
.header{ height:50px; background:#F00}
.content{ height:100px; background:#000}
.footer{ position:absolute; top:150px; bottom:0px; background:#3FC; height:100%; width:100%}
</style>
<body>
<div class="header"></div>
<div class="content"></div>
<div class="footer"></div>
</body>
</html>
其实非常简单
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<style>
html {font-size:12px;height:100%; overflow:hidden;border:0;}
body{color:#555555; font-family:Arial, Helvetica;height:100%; overflow:hidden; margin: 0;padding: 0;}
div{ height:100%;border:1px solid #000; width:150px; }
</style>
<body>
<div>
</div>
</body>
</html>
再来一个 分给我吧
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<style>
html {font-size:12px;height:100%; overflow:hidden;border:0; height:100%}
body{color:#555555; font-family:Arial, Helvetica;height:100%; overflow:hidden; margin: 0;padding: 0;}
.header{ height:50px; background:#F00}
.content{ height:100px; background:#000}
.footer{ position:absolute; top:150px; bottom:0px; background:#3FC; height:100%; width:100%}
</style>
<body>
<div class="header"></div>
<div class="content"></div>
<div class="footer"></div>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询