text-alignの使い方
Web標準HTML/CSS > text-alignの使い方
text-align
プロパティの説明
text-alignは、横方向の文字配置を指定するプロパティです。ブロック要素に指定することができます。
指定できる値
- left
- 文字を右揃えにする。
- center
- 文字を中央揃えにする。
- right
- 文字を左揃えにする。
サンプル
<!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-align:center;
}
-->
</style>
</head>
<body>
<h1>サンプルページ</h1>
<p class="t1">文字を中央揃えに設定。</p>
</body>
</html>