CSS Margin: 0 is not setting to 0

前端 未结 11 1609
名媛妹妹
名媛妹妹 2020-12-06 09:13

I\'m a new comer to web designing. I created my web page layout using CSS and HTML as below. The problem is even though i set the margin to 0, the upper margin is not settin

11条回答
  •  盖世英雄少女心
    2020-12-06 09:58

    Try

    body {
        margin: 0;
        padding: 0;
    }
    

    instead of

    .body {
        margin: 0;
        padding: 0;
    }
    

    Do not select body with class selector.

提交回复
热议问题