左中右布局经典案例
Posted clnchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了左中右布局经典案例相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<style type="text/css">
body{margin: 0px;}
#divLeft{width:100px;height:800px;float: left;margin:0px;background-color:#8ADEFF;}
#divCenter{width:100%;height:800px;margin:0px auto;background-color:red}
#divRight{width:100px;height:800px;float: right;margin:0px;background-color:pink;}
</style>
<title>左中右</title>
</head>
<body>
<div id="divLeft">
左边的
</div>
<div id="divRight">
右边的
</div>
<div id="divCenter">
中间
</div>
</body>
</html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<style type="text/css">
body{margin: 0px;}
#divLeft{width:100px;height:800px;float: left;margin:0px;background-color:#8ADEFF;}
#divCenter{width:100%;height:800px;margin:0px auto;background-color:red}
#divRight{width:100px;height:800px;float: right;margin:0px;background-color:pink;}
</style>
<title>左中右</title>
</head>
<body>
<div id="divLeft">
左边的
</div>
<div id="divRight">
右边的
</div>
<div id="divCenter">
中间
</div>
</body>
</html>
以上是关于左中右布局经典案例的主要内容,如果未能解决你的问题,请参考以下文章