書式
background-position-x:位置
対象
ブロックレベル要素、置換要素
継承
しない
初期値
0%
バージョン
独自プロパティ
対応ブラウザ
Win IE5.0以降, Mac IE5.0, Safari
解説
背景画像の横の位置を指定します。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute; top:10;left:10px;
background-image:url(bg.jpg);
width:100px;
background-position-x:8px;
}
--></style>
</head>
<body>
<div>CSS Sample text.</div>
</body>
</html>