Background image width not 100% on iPad

前端 未结 2 2070
栀梦
栀梦 2021-01-20 01:21

My background images have not been spanning the full width of the browser when viewed on an iPad. This has happened more than once now, so it must be in the way I\'m writing

2条回答
  •  天命终不由人
    2021-01-20 01:56

    I tried using the suggestion above i.e. min-width:1024px in the body tag but it did not work. After a lot of searching I discovered adding it to the html tag also works.

    Example:

    html {
        min-width: 1024px;
        }
    

提交回复
热议问题