问题
I put a background on my homepage. It is correctly displayed on all browsers except on android chrome. Here is my css :
body.path-frontpage {
background-image: url("/themes/contrib/bootstrap_subtheme_front_office/images/background.svg");
background-attachment: fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
Here is my homepage :
https://www.s1biose.com/
回答1:
I ran into the same problem not too long ago. I fixed it by using thr inline style in html. Apart from that I also found a thread where people post their approach to solve this I think you should check it out too!
background-size: cover not working in portrait on Android tablet
来源:https://stackoverflow.com/questions/45620270/android-chrome-background-with-background-size-cover