我是靠谱客的博主 帅气皮带,最近开发中收集的这篇文章主要介绍CSS中常见的几种高度自适应布局1.左右结构--高度自适应窗口高度2.上(固定高度)下(左右结构高度自适应窗口高度)结构3.上(固定高度)下(左中右结构高度自适应窗口高度)结构4.上(固定高度)中(左右结构高度自适应窗口高度)下(固定高度)结构5.圣杯布局,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.左右结构--高度自适应窗口高度

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>经典左右结构--高度自适应窗口高度</title>
<style>
body,html{height:100%;}
*{margin:0; padding:0;}

.left{width:200px; height:100%; background:#FF0; float:left;}
.right{background:#CF3; overflow:hidden; height:100%;}
</style>
</head>

<body>

<div class="left"></div>
<div class="right"></div>

</body>
</html>

2.上(固定高度)下(左右结构高度自适应窗口高度)结构


<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上(固定高度)下(左右结构高度自适应窗口高度)结构</title>
<style>
body,html{height:100%;}
*{margin:0; padding:0;}
.top{width:100%; height:100px; background:#096; position:absolute; top:0; left:0;}
.center{width:100%; background:#30C; position:absolute; top:100px; bottom:0;}
.left{width:200px; height:100%; background:#FF0; float:right; }
.right{background:#CF3; overflow:hidden; height:100%;}

</style>
</head>

<body>
<div class="top"></div>
<div class="center">
    <div class="left"></div>
     <div class="aside"></div>
    <div class="right"></div>
</div>

</body>
</html>

3.上(固定高度)下(左中右结构高度自适应窗口高度)结构

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上(固定高度)下(左中右结构高度自适应窗口高度)结构</title>
<style>
body,html{height:100%;}
*{margin:0; padding:0;}
.top{width:100%; height:100px; background:#096; position:absolute; top:0; left:0;}
.center{width:100%; background:#30C; position:absolute; top:100px; bottom:0;}
.left{width:200px; height:100%; background:#FF0; float:left; }
.right{background:#CF3; overflow:hidden; height:100%;}
.aside{width:100px; height:100%; background:#F9C; float:right; }
</style>
</head>

<body>
<div class="top"></div>
<div class="center">
    <div class="left"></div>
     <div class="aside"></div>
    <div class="right"></div>
</div>

</body>
</html>

4.上(固定高度)中(左右结构高度自适应窗口高度)下(固定高度)结构

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>上(固定高度)中(左右结构高度自适应窗口高度)下(固定高度)结构</title>
<style>
body,html{height:100%;}
*{margin:0; padding:0;}
.top{width:100%; height:100px; background:#096; position:absolute; top:0; left:0;}
.center{width:100%; background:#30C; position:absolute; top:100px; bottom:100px; }
.left{width:200px; height:100%; background:#FF0; float:left; }
.right{background:#CF3; overflow:hidden; height:100%;}
.bottom{width:100%; height:100px; background:#096; position:absolute; bottom:0;}

</style>
</head>

<body>
<div class="top"></div>
<div class="center">
    <div class="left"></div>
    <div class="right"></div>
</div>
<div class="bottom"></div>

</body>
</html>

5.圣杯布局

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>圣杯布局</title>
		<style type="text/css">
			*{margin:0; padding:0;}
			html,body,.warpper{height:100%; min-width:1190px;}
			.wrapper{position: relative;}
			.top,.footer{width:100%;height:100px; background:peachpuff;}
			.center{width:100%;height:auto;position: absolute; top:100px; bottom:100px; background: deeppink;}
			.footer{position:absolute; bottom:0;}
			.left,.right{width:150px; height:100%; background:deepskyblue; float:left;}
			.right{float:right;}
			.main{overflow: hidden;height:100%; background: yellow;}
		</style>
	</head>
	<body>
		<div class="warpper">
			<div class="top"></div>
			<div class="center">
				<div class="left"></div>
				<div class="right"></div>
				<div class="main">
					中新网12月7日电 据中央气象台网站,中央气象台12月7日06时继续发布寒潮蓝色预警:受强冷空气影响,预计7日至9日,江南、华南、贵州南部等地的部分地区先后有4~5级偏北风,气温随之下降6~8℃,其中,福建中南部、广东南部及广西南部等地的部分地区气温下降8~10℃。东部和南部海区先后有7~8级、阵风9~10级大风。9日早间最低气温0℃线将南压至江南北部至贵州中部一带。
				</div>
			</div>
			<div class="footer"></div>
		</div>
	</body>
</html>

 

最后

以上就是帅气皮带为你收集整理的CSS中常见的几种高度自适应布局1.左右结构--高度自适应窗口高度2.上(固定高度)下(左右结构高度自适应窗口高度)结构3.上(固定高度)下(左中右结构高度自适应窗口高度)结构4.上(固定高度)中(左右结构高度自适应窗口高度)下(固定高度)结构5.圣杯布局的全部内容,希望文章能够帮你解决CSS中常见的几种高度自适应布局1.左右结构--高度自适应窗口高度2.上(固定高度)下(左右结构高度自适应窗口高度)结构3.上(固定高度)下(左中右结构高度自适应窗口高度)结构4.上(固定高度)中(左右结构高度自适应窗口高度)下(固定高度)结构5.圣杯布局所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部