CSS 布局案例

靶心

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>靶心的制作</title>
	<style>
	.round1 {
		width: 500px;
		height: 500px;
		background-color: blue;
	}
	.round1,
	.round2,
	.round3,
	.round4,
	.round5{
		border: 10px solid #000;
		border-radius: 50%;
		margin: 40px;
	}
	.round1 {
		width: 500px;
		height: 500px;
		background-color: blue;
	}
	.round2 {
		width: 400;
		height: 400px;
		background-color: blue;
	}
	.round3 {
		width: 300px;
		height: 300px;
		background-color: blue;
	}
	.round4 {
		width: 200px;
		height: 200px;
		background-color: blue;
	}
	.round5 {
		width: 100px;
		height: 100px;
		background-color: red;
	}
	</style>
</head>
<body>
	<div class="round1">
	    <div class="round2">
	    	<div class="round3">
	    		<div class="round4">
	    			<div class="round5"></div>
	    		</div>
	    	</div>
	    </div>
	</div>
</body>
</html>

在这里插入图片描述

圣杯布局

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>圣杯布局和双飞翼布局</title>
	<style>
	div {
		margin: 0;
		padding: 0;
	}
	.container {
		/* width: 100%; */
		background-color: #eee;
		height: 200px;
		padding: 0px 200px;
		min-width: 400px;
	}
	.left,
	.right {
		width: 200px;
		height: 200px;
		background-color: skyblue;
		float: left;
	}
	.main {
		width: 100%;
		height: 200px;
		background-color: pink;
		float: left;
	}
	.left {
		margin-left: -100%;
		position: relative;
		left: -200px;
	}
	.right {
		margin-left: -200px;
		position: relative;
		right: -200px;
	}
	</style>
</head>
<body>
	<div class="container">
		<div class="main">中间栏</div>
		<div class="left">左边栏</div>
		<div class="right">右边栏</div>
	</div>
</body>
</html>

在这里插入图片描述

双飞翼布局

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>双飞翼布局</title>
	<style>
	div {
		margin: 0;
		padding: 0;
	}
	.container {
		/* width: 100%; */
		background-color: #eee;
		height: 200px;
		/* padding: 0px 200px; */
		min-width: 400px;
	}
	.left,
	.right {
		width: 200px;
		height: 200px;
		background-color: skyblue;
		float: left;
	}
	.main {
		width: 100%;
		height: 200px;
		background-color: pink;
		float: left;
	}
	.left {
		margin-left: -100%;
		/* position: relative;
		left: -200px; */
	}
	.right {
		margin-left: -200px;
	/* 	position: relative;
	right: -200px; */
	}
	.main_w {
		margin: 0px 200px;
	}
	</style>
</head>
<body>
	<div class="container">
		<div class="main">
		    <div class="main_w">中间栏</div>
		</div>
		<div class="left">左边栏</div>
		<div class="right">右边栏</div>
	</div>
</body>
</html>l
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值