How to margin the body of the page (html)?

后端 未结 8 1682
萌比男神i
萌比男神i 2020-12-15 18:14

I used the following


which works only on IE6. I want it to work with firefo

8条回答
  •  天涯浪人
    2020-12-15 18:28

    
    

    I'm not sure where you read this, but this is the accepted way of setting CSS styles inline is:

    
    

    And with a stylesheet:

    body
    {
      margin-top: 0px;
      margin-left: 0px;
      margin-right: 0px;
    }
    

提交回复
热议问题