2009年09月09日
背景画像を固定 CSSのメモ
CSSで背景画像を固定する方法!!!
/* background-color: #181818;*/
↑↑↑ もともとの背景色をコメントアウト!!!
background: url("../img/header/back.jpg");
background-repeat: no-repeat;
background-position: 50% 50%;
background-attachment:fixed;
こんな感じで固定可能!!!
- by tomoyo-c
- at 00:32

