固定div,填充增加宽度

时间:2016-02-04 08:41:17

标签: html css css3

我有一个简单的模板,我在中间显示标题,内容和页脚部分,标题有背景颜色,所有内容应该在左边和左边有30px填充。右。

我按照下面的方式进行操作,但它会增加宽度。

http://codepen.io/anon/pen/xZapEE?editors=1100

html, body, form {
    height: 100%;
    background-color: #fff;
    height:100%;
}

body {
    font-family: "Open Sans","Trebuchet MS",Verdana,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    line-height: 18px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    color: #687074;
    height:100%;
    background-color: #fff;
}
.main-wrapper{
    width:1000px;
    margin:0 auto;
    position:relative;
    height:100% !important;
    padding:0 30px;
}
.header-wrapper{
    width:100%;
    min-height:200px;
    background-color:#f5f5f5;
    margin:0 auto;
    position:relative;
    padding:0 30px;
}
.content-main{
    width:1000px;
    min-height:400px;
    margin:0 auto;
    position:relative;
    height:auto;
    background-color:#ccc;
}
.footer-wrapper{
    width:1000px;
    min-height:200px;
    background-color:#f5f5f5;
    margin:0 auto;
    position:relative;
}
.header-row1{
    float:left;
    width:100%;
    height:150px;
    margin-bottom:15px;
}
.header-col1
{
float:left;
width:132px;
width:50%;

}
.header-col2
{
 float:right;
width:50%;
}
.header-col2 > h1{
  font-size:60px;
  text-align:right;  
}
.header-logo{

}
.header-row2{
    float:left;
    width:100%;
    height:30px;
    margin-bottom:15px;
    padding:0 30px;

}

1 个答案:

答案 0 :(得分:1)

您可以使用box-sizing将其纳入:

box-sizing: border-box;

大小调整值

  

content-box :这是CSS标准指定的初始值和默认值。测量宽度和高度属性仅包括内容,但不包括填充,边框或边距。

     

border-box :width和height属性包括填充和边框,但不包括边距。