- Forums
- HTML
- How To Make HTML Style With Nowrap Text In A Table Tag
this page will show you how you how to put style in your HTML to be able to make text not wrap into a new line when you are typing inside a table [736], Last Updated: Sat May 18, 2024
wallpaperama
Sun Nov 09, 2008
0 Comments
2059 Visits
if you want to know how you can make html with no wrap, meaing it doesnt go to the next line, you can use the nowrap.
for example, i have a table, and on my cell i dont want it to wrap (nowarp) the text. this is how i would write the html code:
<table>
<tr>
<td nowrap>this text will no wrap around within this table</td>
</tr>
</table>
hope this helps