开发者

CSS - Cannot get rid of margin

My problem is that i have a header that is suppose to take up the whole top of the page but for some reason there is a margin on both sides.

My Css:

#top_bar{
    background-color:#000;
    height: 80px;
    left: 0px;
    right: 0px;
    margin-left: 0px;
    margin-right: 0px;
    position: relative;
    top: -10px;
    width: 100%;
    c开发者_如何学编程olor:#FFF;
}


Most likely, this stems from the default margin/padding of body. Try adding

html,body {padding:0; margin:0;}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜