e媒网络

一切皆可能 e媒网络 http://www.eMay.net

博客园 首页 新随笔 联系 订阅 管理
<!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>

 另一种方式:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Layout Demo</title>
<style>
html,body{
    width: 100%;
}
#container {
    font-family: Arial;
    font-size: 13px;
    position: relative;
    width: 80%;
    margin: 0 auto;
}
#logo {
    background-color: #a2d9ff;
    text-align: center;
    padding: 10px;
    height: 80px;
    margin-bottom: 2px;
}
.content {
    text-align: center;
    float: left;
    height: 500px;
    width: calc(100% - 300px);  
    background-color: #CCCCCC;
}
.link {
    text-align: center;
    float: right;
    height: 500px;
    width: 300px;
    background-color: #FF0000;
}
#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>

 

posted on 2019-04-01 17:45  e媒网络技术团队  阅读(182)  评论(0编辑  收藏  举报