您的位置:首页 > 其它

页面左边导航固定,右边自适应宽度

2014-04-28 18:12 316 查看
模式一:

<style type="text/css">
div { height:300px; border:2px solid #306;}
.left{width:300px; position:absolute; left:0; top:0;}
.right{ margin-left:310px;}
body{margin:0; padding:0;}
</style>
</head>

<body>
<div class="left"></div>
<div class="right"></div>
</body>


模式二:

<style type="text/css">
div { height:300px; border:2px solid #306;}
.left{width:300px; position:absolute; left:0; top:0;}
.center{ margin-left:310px; margin-right:200px;}
.right { width:190px;position:absolute; right:0; top:0;}
body{margin:0; padding:0;}
</style>
</head>

<body>
<div  class="center"></div>
<div class="left"></div>
<div class="right"></div>
</body>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: