Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created July 16, 2013 10:30
Show Gist options
  • Save libo1106/6007598 to your computer and use it in GitHub Desktop.
Save libo1106/6007598 to your computer and use it in GitHub Desktop.
自适应大背景
/*
* background-attachment: fixed必须有,保证浏览器完整渲染背景图
*/
html {
background: url(images/perfect-full-page-bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment