text-align(テキスト配置)スタイル

<text-align:left>

<text-align : center>

<text-align:right>

<text-align:justify>
表です  
TABLEタグの スタイルは
{text-align:center}
を設定

 

ほそく ★text-align:justify は反映されず、left配置になる(IE5では改善された。text-justifyを参照)
★テキストだけでなく、画像、ボタンなどにも適用可能。

htmlsouse.gif (2461 バイト)

<style><!--
    H4.lef {text-align:left}
    H4.cen {text-align:center}
    H4.rig {text-align:right}
    H5 {text-align:justify}
    DIV {text-align:center;border:thin solid}
    TABLE {text-align:center}
--></style>
</head>

<body>
<h4 class="lef"><text-align:left></h4>
<h4 class="cen"><text-align : center></h4>
<h4 class="rig"><text-align:right></h4>
<h5><text-align:justify></h5>

<table border="1"
    cellpadding="0" cellspacing="1" width="300">
    <tr>
        <td width="121">表です</td>
        <td width="171"> </td>
    </tr>
    <tr>
        <td width="121">TABLEタグの</td>
        <td width="171">スタイルは<br>
            {text-align:center}<br>を設定</td>
    </tr>
</table>

<div><button>中央配置されたボタン</button></div>

END(99/8/24修正)