CSS white space at bottom of page despite having both min-height and height tag

后端 未结 10 1929
花落未央
花落未央 2020-12-23 20:35

I am unable to get the white space at the bottom of this page to disappear. I have both min-height and height tags in body. Any suggestions? Thanks!

http://womanc

10条回答
  •  清酒与你
    2020-12-23 20:51

    The problem is the background image on the html element. You appear to have set it to "null" which is not valid. Try removing that CSS rule entirely, or at least setting background-image:none

    EDIT: the CSS file says it is "generated" so I don't know exactly what you will be able to edit. The problem is this line:

    html { background-color:null !important; background-position:null !important; background-repeat:repeat !important; background-image:url('http://images.freewebs.com/Images/null.gif') !important; }
    

    I'm guessing you've put null as a value and it has set the background to a GIF called 'null'.

提交回复
热议问题