2015-07-13 61 views

回答

0

现在删除width:100%;#footer

添加left:0;right:0;像这样

#footer { 
    left:0; // add this line 
    right:0; // add this line 
    width:100%; // remove this line 
    border: 1px solid #000000; 
    position:fixed; 
    padding:0 5px; 
    margin:10px; 
} 

Demo

相关问题