Skip to content

Instantly share code, notes, and snippets.

@YutaroSoejima
Created September 6, 2015 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YutaroSoejima/ae7da38ea6e3673b601e to your computer and use it in GitHub Desktop.
Save YutaroSoejima/ae7da38ea6e3673b601e to your computer and use it in GitHub Desktop.
CSS tips
/* 画像ファイルの指定 */
background-image: url(images/background-photo.jpg);
/* 画像を常に天地左右の中央に配置 */
background-position: center center;
/* 画像をタイル状に繰り返し表示しない */
background-repeat: no-repeat;
/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
background-attachment: fixed;
/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
background-size: cover;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment