30(新增属性与标签)H5新增标签1

本文详细描述了使用HTML和CSS创建一个包含头部、导航、主要内容区域(分为文章和侧边栏)以及底部的响应式网页布局过程。
摘要由CSDN通过智能技术生成
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>新增标签</title>
	<style type="text/css">
		.container {
			width: 800px;
			margin: 20px auto;
			/*background-color: pink;*/
		}
		.container header {
			height: 50px;
			background-color: orange;
			margin-bottom: 50px;
		}
		.container nav {
			height: 50px;
			margin-bottom: 20px;
			background-color: red;
		}
		.content {
			overflow: hidden;
			/*background-color: skyblue;*/
		}
		.content article {
			width: 500px;
			height: 230px;
			background-color: springgreen;
			float: left;
			padding: 20px 50px;
			box-sizing: border-box;
		}
		.content article section {
			width: 400px;
			height: 150px;
			background-color: aqua;
		}
		.content aside {
			width: 250px;
			height: 260px;
			background-color: gold;
			float: left;
			margin-left: 50px;
			margin-bottom: 50px;
		}
		.container footer {
			height: 50px;
			background-color: gray;
		}
	</style>
</head>
<body>
	<div class="container">
		<header>头部</header>
		<nav>导航</nav>
		<div class="content">
			<article>
				<!-- 文章内容 -->
				<section>
					部分
				</section>
			</article>
			<aside>
				一边  侧边
			</aside>
		</div>

		<footer>网站底部 脚步</footer>
	</div>
</body>
</html>

上述运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

七色的天空

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值