タグの絵本
>
CSS
> 背景画像を縦方向に並べる
■背景画像を縦方向に並べる
・使用するCSS
body {
background-image: url(☆);
background-repeat: repeat-y;
background-position: right top;
}
補足≫
☆=画像URL
right topを変更すれば表示位置を変更できます。
・説明
CSSを使用し、背景画像を縦方向に並べます。
・使用例
ソース (テスト書き込み可)
<html> <head> <title>あなたのホームページ</title> <style type="text/css"> <!-- body { background-image: url(../image/gako.jpg); background-repeat: repeat-y; background-position: right top; } } --> </style> </head> <body> ホームページ作成中。頑張ります! </body> </html>
Copyright (C) 2006 タグの絵本 All rights reserved.
→
index