white space below footer and above on re sizing window

前端 未结 2 1844
借酒劲吻你
借酒劲吻你 2021-01-26 16:10

I am getting white space above and below my footer ,there is a gap coming please check css is below

.footer {
background-image: url(\"../images/footer_image.pn         


        
相关标签:
2条回答
  • 2021-01-26 16:39

    There is a margin of 8px on the body of the page.

    I see in the my style.txt you have added

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

    This needs to be:

    body
    { 
    margin:0 !important; 
    padding:0 !important; 
    }
    
    0 讨论(0)
  • 2021-01-26 16:40

    I saw a body margin of 8px in your site. Add this or remove existing.

    body{
    margin:0;
    padding:0;
    }
    

    Your body margin

    Error enter image description here

    0 讨论(0)
提交回复
热议问题