Guest_imported
New member
- Jan 1, 1970
- 0
I need to display some text in a table. The text is pulled out dynamically and I do not control the contents. I do know however that it will all be links to other pages. The problem is that although I do a no wrap, the text gets split up into two at the end of the table. I do not want that to happen. I am ok with the entire link being moved to the next column. However a single link should not be split into multiple lines. I don’t know what I am missing.
I am ok with:
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
I am not ok with:
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
Here is the code:
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
</HEAD>
<BODY>
<P> </P>
<table width="600" border="0" cellpadding="3" cellspacing="3">
<tr>
<td align="center" wrap="true">
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
</td>
</tr>
</table>
</BODY>
</HTML>
Any hints will be appreciated. Thanks a lot.
I am ok with:
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
I am not ok with:
This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips This is an url to tek-tips
Here is the code:
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
</HEAD>
<BODY>
<P> </P>
<table width="600" border="0" cellpadding="3" cellspacing="3">
<tr>
<td align="center" wrap="true">
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
<a href=" is an url to tek-tips</a>
</td>
</tr>
</table>
</BODY>
</HTML>
Any hints will be appreciated. Thanks a lot.