﻿body {
    /* 元々、HTML内に記述のあったコード */
    height:1000%;
    background-color:white;
    background-image: url(App_Image/yurtecstudium.jpg);
    background-repeat: repeat-y;
    background-attachment: scroll;
    /* センタリングのために追加したコード */
    margin:0px;          /* ページ全体のmargin */
    padding:0px;         /* ページ全体のpadding */
    text-align:center;   /* 下記のautoに未対応用のセンタリング */
}

#ThisPage {
    margin-left:auto;    /* 左側マージンを自動的に空ける */
    margin-right:auto;   /* 右側マージンを自動的に空ける */
    text-align:left;     /* 中身を左側表示に戻す */
    width:1000px;        /* 幅を決定する */
}

