Reputation: 26
I have this weirdest problem that i can't solve for the second day :((
As you can see I have html and body, with height:100%, which has two children with min-height:100% (height or min-height doesn't matter right now);
Things like this usually happen because i missed some tiny, obvious thing; I can think of at least two ways to reach the desired effect ignoring this problem, but i just need to understand what's going - what am i missing?
// Of course I tried to disable all the scripts, normalizers and other stuff - no result...
in case you need to know the #PageWrap properties:
#PageWrap {
max-width: 1400px; min-width: 835px; height: 100%;
padding: 19px 0 0 21px; margin-left: 200px;
background: linear-gradient(to right, rgba(52, 49, 221, 0.2) 0%, rgba(25, 28, 37, 0.2) 100%),
url("../img/BG_Z.png");
background-position-x: 0px, 309px;
background-size: 300px 100%, 928px 1061px;
background-repeat: no-repeat;
background-attachment: fixed;
}
Upvotes: 0
Views: 316
Reputation: 6499
Would background-size: 300px 100%, 928px 1061px;
be causing the problem? try taking out 928px 1061px
and see if that works
Upvotes: 1