必ずといっていい程、忘れてしまうCSSで背景画像の中央寄せ。
目次
<STYLE type="text/css">
<!--
body {
background-image:url("/*背景画像のURL*/");
background-repeat:no-repeat;
background-position: 50% 50%;
background-attachment:fixed;
}
-->
</STYLE>
簡単ですね。
もう、終わっちゃったので上から順に解説しましょう!
background-image: url("/*背景画像のURL*/");
background-repeat: no-repeat;
background-position: 50% 50%;
background-attachment:fixed;
ポジションの指定をcenterとかにしちゃうよね!
<body style="background-image: url("/*背景画像のURL*/");background-repeat: no-repeat;background-position: 50% 50%;background-attachment:fixed;">
これであなたのサイトのbody背景にも画像が中央寄りになりますよ!