center

書式

<center>〜</center>

属性

属性名 初期値 内 容
id なし IDを指定します。

対応

HTML 3.2
Microsoft (MSDN)
[IE3〜][Firefox 1〜][Safari 1〜][Opera 3〜][Netscape 2〜]

説明

センタリング(中央揃えに)します。

関連タグ

p__

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p>
次の行はセンタリングされます。<br>
<center>
中央に表示されます。
</center>
</p>
</body>
</html>