Last-modified: 2011-12-26 (月) 01:24:43
HTML・CSS/背景画像を繰り返して表示する(background-repeat)


確認したときの環境

方法

  1. background-repeatプロパティを使う。
    [repeat(縦横全て)]、[repeat-x(横方向に繰り返す)]、[repeat-y(縦方向に繰り返す)]、[no-repeat(繰り返さない)]
    Everything is expanded.Everything is shortened.
      1
      2
      3
      4
    
    -
    |
    |
    !
    
    div#header {
        background-image: url("../image/paburica-theme-01/toolbar_tab01.gif");
        background-repeat: no-repeat;
    }