Skip to content

Instantly share code, notes, and snippets.

@yazumoto
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save yazumoto/1c5be303c9044d46e02e to your computer and use it in GitHub Desktop.

Select an option

Save yazumoto/1c5be303c9044d46e02e to your computer and use it in GitHub Desktop.
背景を一面の画像にするcss full screen image
.wrapper{
background: url('/assets/image_name.jpg') no-repeat center center fixed;
 -moz-background-size: cover;
 -o-background-size: cover;
 -webkit-background-size: cover;
 background-size: cover;
}
@yazumoto
Copy link
Author

JavaScriptでやる場合の方法がQiitaにあったので、動的にやりたい場合やスライドショーにしたい場合はこっちかな
http://qiita.com/dz_/items/605156b5a0bbd443fb8a

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment