首页 > 其他 > 详细

Layout-1 相关代码

时间:2019-04-01 18:18:48      阅读:124      评论:0      收藏:0      [点我收藏+]
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Layout Demo</title>
<style>
#container {
	font-family: Arial;
	font-size: 13px;
	position: relative;
	width: 80%;
	margin: 0 auto;
}
#container #logo {
	background-color: #a2d9ff;
	text-align: center;
	padding: 10px;
	height: 80px;
	margin-bottom: 2px;
}
#container #maincontent .content {
	text-align: center;
	float: left;
	height: 500px;
	width: 100%;
	margin-right: -200px;
	background-color: #CCCCCC;
}
#container #maincontent .link {
	text-align: center;
	float: right;
	height: 500px;
	width: 200px;
	background-color: #FF0000;
}
#container #footer {
	text-align: center;
	height: 30px;
	background-color: #00FFFF;
	clear: both;
}
</style>
</head>
<body>
<div id="container">
  <div id="logo">logo</div>
  <div id="maincontent">
    <div class="content">content</div>
    <div class="link">link</div>
  </div>
  <div id="footer">footer</div>
</div>
</body>
</html>

 

Layout-1 相关代码

原文:https://www.cnblogs.com/exesoft/p/10637839.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!