No wrap alternative

div{ white-space: nowrap; }

td no wrap alternativeFor most web designers tables are a thing of the past. One feature that some of us miss is the old nowrap option, that avoided breaking words into multiple lines.

The syntax was something like <td nowrap="nowrap">These words don't break</td>

Fortunately there is a css alternative. Simply add 'white-space:nowrap;' to your class to achive the same effect.

Example

<div style="width:20px; padding: 4px; border: 1px solid #666;">This will break</div>

This will break

<div style="width:20px; white-space:nowrap; padding: 4px; border: 1px solid #666;">This will not break</div>


This will not break
Tags: No wrap alternative


Leave a reply.