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

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

I used the following


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

8条回答
  •  旧时难觅i
    2020-12-15 18:45

    I hope this will be helpful.. If I understood the problem

    html{
         background-color:green;
    }
    
    body {
        position:relative; 
        left:200px;    
        background-color:red;
    }
    div{
        position:relative;  
        left:100px;
        width:100px;
        height:100px;
        background-color:blue;
    }
    

    http://jsfiddle.net/6M6ZQ/

提交回复
热议问题