perl掲示板の壁紙について質問があります。
現在、
 {
  print "<body background=\"背景イメージ" bgproperties=\"fixed\"
 }
となっていて、壁紙はリピートになっているのですが、
この壁紙を「中央に1つだけ表示」するにはどうしたらよろしいのでしょうか?
CSSでいうと
.Wallpaper {
background-attachment: fixed;
background-image: url(背景イメージ);
background-repeat: no-repeat;
background-position: center center;
}
の様にしたいのです。
よろしくお願いします。