码迷,mamicode.com
首页 > Web开发 > 详细

css小技巧

时间:2014-09-03 10:58:06      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   div   sp   log   on   c   

 布局中自适应高度和宽度

body {
    margin-top:0px;    /* 去除网页上边空白 */
}
/* 大容器,包含下面所有层 */
#container {
    width:800px;
    margin:0px auto;    /* 居中 */
}
/* 头部 */
#header {
    width:100%;
    height:100px;
    background:#FFE1FF;
}
/* 中部,包括左边区(sider)和右边内容区(content) */
#middleBody {
    width:100%;
    overflow:hidden;    /* 隐藏超出的部分 */
}
/* 左边 */
#sider {
    width:200px;
    float:left;
    background:#FFE4E1;
}
/* 右边主内容区 */
#content {
    /* 此两行是#content自适应宽度的关键,旨在与右边界对齐,且不被挤到下面去 */
    padding-right:10000px;
    margin-right:-10000px;
    float:left;
    background:#FFFAF0;
}
/* #sider和#content共同属性,此为自适应高度的关键,旨在#sider和#content下边界对齐,且不会露白*/
.column {
    padding-bottom:20000px;
    margin-bottom:-20000px;
}
/* 底部 */
#footer{
    clear:left;    /* 防止float:left对footer的影响 */
    width:100%;
    height:80px;
    background:#FFE4B5;
}

 

css小技巧

标签:style   blog   color   ar   div   sp   log   on   c   

原文地址:http://www.cnblogs.com/muzhongjiang/p/3952932.html

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