chrome on davidchua https://dchua.com/tags/chrome/ Recent content in chrome on davidchua Hugo -- gohugo.io en-us Thu, 09 Jan 2014 00:00:00 +0000 Chrome Android and background-size: cover not playing nice https://dchua.com/posts/2014-01-09-chrome-android-and-background-size-cover-not-playing-nice/ Thu, 09 Jan 2014 00:00:00 +0000 https://dchua.com/posts/2014-01-09-chrome-android-and-background-size-cover-not-playing-nice/ Quick note that I’ve discovered when working with full-screen background images not sizing up itself properly in portrait mode on Android’s Chrome. html { background: asset-url('supercoolbackground.jpg', image) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } Normally, that’s all we need to do. Works perfectly on most modern browsers on the desktop. But when we get to the mobile web, it ends up looking more like this.