左寄せ・右寄せ・中央寄せ

文字の水平位置(左右の関係)を指定する属性です。

セレクタ名{text-align:値;}

<div ID="セレクタ名">テキスト</div>

※1この値はtext-align属性単体では動作しません。

left

左寄せ

right

右寄せ

center

中央寄せ

justify

均等割付※1

例1

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=Shift_JIS">
<title>左寄せ・右寄せ・中央寄せ</title>
<style type="text/css">
<!--
#left {text-align:left;}
#right {text-align:right;}
#center {text-align:center;}
-->
</style>
</head>
<body>
<div ID="left">htmlとstylesheet</div><br>
<div ID="right">htmlとstylesheet</div><br>
<div ID="center">htmlとstylesheet</div>
</body>
</html>

こうなります