『書物の迷宮』予告篇

思い出したように本を読み、本の読み方を思い出す

バグかなぁ……。

デザイン編集画面では以下のように入力しているのに、

div.section {
 background-image: url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012002.png"), url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012001.png"), url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012004.png"), url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012003.png");
 background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
 background-position: top left, top right, bottom left, bottom right;
}

実際には以下のようにbackground-imageからカンマが取り除かれてしまう。
何故にbackground-imageだけ……。

div.section {
 color: #000b00;
 background: #ebf6f7;
 background-image: url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012002.png") url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012001.png") url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012004.png") url("http://f.hatena.ne.jp/images/fotolife/h/hazy-moon/20070326/20070326012003.png");
 background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
 background-position: top left, top right, bottom left, bottom right;
 margin: 0 auto 2% auto ;
 padding: 0 2%;
}