背景画像を固定する
プロパティ:background-attachment:値:fixed
スタイルシートでページの背景画像を固定するには、background-attachmentプロパティを使います。
ソース例(太字が学んだ内容です)
<html>
<head>
<title>背景画像を固定する</title>
<meta http-equiv="Content-Style-Type" content="text/css">
</head>
<body style="background-image:url(cat.gif); background-attachment:fixed">
<table height="1000">
<tr><td>
<h1>画面をスクロールしても背景が動きません</h1>
</td></tr>
</table>
<br><br>
<a href="http://www.homepagesakusei.biz/">ホームページ作成、HTML</a><br>
Webサイト版<a href="http://www.homepagecreation.net/" target="_blank">ホームページ作成とHTML</a>
</body>
</html>
表示はこちら
2006年05月05日
