text-indent

プロパティの説明

text-indentは、文字の一行目の余白を指定するプロパティです。ブロック要素に指定することができます。

指定できる値

CSSで使える数値
1emなどを指定します。

サンプル

サンプルページ

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "https://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">

<head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <meta http-equiv="Content-Style-Type" content="text/css">
 <title>サンプルページ</title>
 <style type="text/css">
 <!--
 .t1{
 text-indent:1em;
 }
 -->
 </style>
</head>

<body>
 <h1>サンプルページ</h1>
 <p>text-indentを指定しなかった場合。</p>
 <p class="t1">text-indentを指定した場合。</p>
</body>

</html>