码迷,mamicode.com
首页 > 其他好文 > 详细

二列布局

时间:2015-11-20 09:16:06      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

本文讲解的是左侧一列定宽,右侧主体宽度自适应布局

这种布局有以下几个难点:

  1. 如题,左侧一列定宽200px,右侧主体区块宽度自适应
  2. 处于页面优化考虑,应先加载右侧主体区块再加载左侧定宽列,所以右侧主体区块div要写在左侧定宽区块div前面
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.main,.sitebar {
    height: 300px;
    font: bolder 20px/300px ‘微软雅黑‘;
    color: #fff;
    text-align: center;
}
.main {
    width: 100%;
    float: left;
}
.main .content {
    margin-left: 200px;
    background-color: red;
}
.sitebar {
    width: 200px;
    float: left;
    margin-left: -100%;
    background-color: green;
}
</style>
</head>
<body>
<div class="main">
    <div class="content">右侧主体自适应区块</div>
</div>
<div class="sitebar">左侧定宽200px区块</div>
</body>
</html>

最终效果图:

技术分享

二列布局

标签:

原文地址:http://www.cnblogs.com/lishuaihaoqiang/p/4979715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!