<html>
<head>
<title>网页标题</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="header">
<h2>网页标题</h2>
</div>
<div id="content">
<h2>网页内容</h2>
<p>这是网页的内容</p>
</div>
<div id="footer">
<p>页脚信息</p>
</div>
</body>
</html>
div {
width: 300px;
height: 200px;
padding: 20px;
border: 1px solid #000;
margin: 10px;
}
div {
float: left;
width: 200px;
height: 100px;
margin: 10px;
}
div {
position: absolute;
top: 50px;
left: 100px;
}
.container {
display: flex;
flex-direction: row;
}
.item {
flex: 1;
margin: 10px;
}
本文为翻滚的胖子原创文章,转载无需和我联系,但请注明来自猿教程iskeys.com
