Css边框适合左右两侧

时间:2017-05-18 22:23:11

标签: css

如果我希望我的页脚适合左右两侧 怎么做?我不希望左侧和右侧都有空格。谢谢!

#footer {
    background: url("../templates/images/17.jpg");
    background-size: 1300px 200px;
    border-radius: 40px;
    background-repeat: no-repeat;
    height: 200px;
    border: 0px solid #CCC;
    width: 1300px;
    margin: 0px auto;
    box-shadow: 10px 10px 10px black;
}

1 个答案:

答案 0 :(得分:1)

将元素的宽度设置为100%,将body的边距和填充设置为0。

body {
    padding: 0;
    margin: 0;
}