Last-modified: 2011-12-26 (月) 01:24:43
HTML・CSS/背景画像を固定する(background-attachment)


確認したときの環境

方法

  1. background-attachmentプロパティを使う。
    [fixed(固定)]、[scroll(スクロールバーの動きとともに動く)]
    Everything is expanded.Everything is shortened.
      1
      2
      3
      4
      5
    
    -
    |
    |
    |
    !
    
    div#header {
        background-image: url("../image/paburica-theme-01/toolbar_tab01.gif");
        background-repeat: no-repeat;
        background-attachment:scroll;
    }