Horje

How to specify no word-wrapping in table cell (with CSS)

Add Nowrap to td

index.html
Example: HTML
 <table>
  <tr>
    <th>Poem</th>
  </tr>
  <tr>
    <td style="white-space:nowrap">Never increase, beyond what is necessary, the number of entities required to explain anything</td>
  </tr>
</table> 

Output should be:

How to specify no word-wrapping in table cell (with CSS)




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin