Background is only as wide as view-port

后端 未结 1 400
独厮守ぢ
独厮守ぢ 2020-12-17 21:55

Annoying problem!

When I zoom-in on my view-port window (happens in Firefox, chrome) and then scroll horizontally to the right, my background images are clipped

相关标签:
1条回答
  • 2020-12-17 22:33

    The fix for this is to set min-width on the body:

    body{ width:100%;min-width: 1002px; }
    

    This fixes problem on all browsers that I have as well as iphone (according to iphonetester although I realise it's probably best to add some media queries now to really give the best solution to handheld users

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