目次 スタイルシート プロパティ一覧 戻る

このページのBODY要素のCSS記述です。

body { background : #fff               /* 背景色 白   */
                    url( haikei.png )  /* 背景画像指定 */
                    no-repeat          /* 敷き詰め無し */
                    fixed            : /* 背景画像固定 */
       color      : #000             ; /* 表示色 黒   */
     }

このCSS記述は、

body { background-color      : #fff;             ; /* 背景色 白   */
       background-image      : url( haikei.png ) ; /* 背景画像指定 */
       background-repeat     : no-repeat         ; /* 敷き詰め無し */
       background-attachment : fixed ;           ; /* 背景画像固定 */
       color                  : #000             ; /* 表示色 黒   */
     }

と、等価です。

戻る