Dreamweaver TechniqueJAVA Script サンプル | CSS sample | JAVA Applet sample | Flash Sample
HTML4.0 reference | DynamicHTMLXHTML | XML sample | XSLT sample | RIKO's ASP Trial
ASP ADO リファレンス | PHP関数リファレンス | MySQL関数リファレンス

背景画像の位置指定

■ 背景画像の位置指定

background-positionプロパティは、背景画像が指定された場合の、画像の表示位置をを設定します。
単位付き の数値と%による指定の場合は、横位置・縦位置の順に半角スペースで区切って指定します。
値がひとつしか指定されなかった場合は、横位置が指定されたことになり、その場合は縦位置は「50%」の位置になります。
単位付きの数値の場合は、領域の左上から画像の左上までの距離を指定します。
%による指定の場合は、領域の指定した割合の位置に、画像の同じ割合の位置があわせて表示されます。
これらは、混在させて指定することが可能です。位置を示すキーワード(leftやtopなど)は、それぞれleftとtopは「0%」、centerは「50%」、rightとbottomは「100%」を指定した場合と同じ結果になります。これらは順不同で指定することができ、ひとつしか指定しなかった場合はもう一方がcenterになります。

表示位置
横位置 縦位置 :左上を基点とした単位付きの数値または%
横位置 縦位置:left、right、center、top、bottom

■ 作例1

HTMLソース

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>背景画像の表示位置を指定する</title>
<style type="text/css">
<!--
body {
color: #000000;
background-color: #ffffff;
background-image: url(../assets/images/038_1.jpg);
background-repeat: no-repeat;
background-position: center center
}
-->
</style>
</head>
<body>
<p>center center = 50% 50%</p>
</body>
</html>

■ 作例1
HTMLソース
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>背景画像の表示位置を指定する</title>
<style type="text/css">
<!--
body {
color: #000000;
background-color: #ffffff;
background-image: url(../assets/images/038_1.jpg);
background-repeat: no-repeat;
background-position: right bottom
}
-->
</style>
</head>
<body>
<p>right bottom = 100% 100%</p>
</body>
</html>

<<<戻る

R HOUSE | RIKO's Trial Page | Shirley's Pettit Case | Shirley's i-box | Shirley's little box | CSS Trial