11.white-spaceプロパティは、ホワイトスペース(スペース、タブ、改行等)の仕方を指定します。 ここでは、セル内での設定を紹介します。


※★CSS
td.sample {
	white-space: nowrap;
}


※★HTML
<table>
<tr>
<td class="sample">このセル内は自動折り返し禁止です。</td>
<td>このセル内は自動折り返しです。</td>
</tr>
</table>

このセル内は自動折り返し禁止です。 このセル内は自動折り返しです。