text-indent

書式 text-indent:値
対象ブロックレベル要素
継承する
初期値 0
解説
字下げ(インデント)を指定します。
サンプルコード
<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;
text-indent:3em;
}
--></style>
</head>
<body>
<img src="Default.png">
<div>サンプルテキストです。<br>Sample Text</div>
</body>
</html>
実際のサンプルをダウンロード