A 1 pixel gap only coming on iPad but fine on Safari and Chrome

后端 未结 7 1624
悲哀的现实
悲哀的现实 2021-02-01 18:00

Here at this line after clouds which will be only visible in iPad or iPhone. Any idea how to solve it?

It\'s fine in all other desktop browsers.

7条回答
  •  一生所求
    2021-02-01 18:33

    Try this

    #wrapper {
         margin: -2px auto;
    ... rest of your css....
    
    }
    

    may be there is a small resolution problem also so try this also

    #wrapper {
        background-color: #fff;
    ... rest of your css....
    
    }
    

    one of them has to work :)

    UPDATE:

    I think i got it,

    remove #wrapper background-color;
    
    remove #banner-switcher background: 
    

提交回复
热议问题