CSS background-position not working in Mobile Safari (iPhone/iPad)

后端 未结 5 1637
面向向阳花
面向向阳花 2020-12-06 00:43

I have an issue with background-position in mobile safari. It works fine on other desktop browsers, but not on iPhone or iPad.

body {
 background-color: #000         


        
5条回答
  •  [愿得一人]
    2020-12-06 01:20

    It'll work with

    background-position-x: 50%;
    background-position-y: 0%;
    

    and still add

    background-position: center top;
    

    for other browsers.

提交回复
热议问题