Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

remove "line feed" in unordered list

Status
Not open for further replies.

y2k1981

Programmer
Aug 2, 2002
773
IE
I have the following code in a table:
Code:
<table cellpadding=&quot;1&quot; cellspacing=&quot;1&quot; border=&quot;0&quot;>
<tr><td>
This is a test
<ul>
<li>test1
<li>test2
<li>test3
</ul>
</td></tr>
</table>
However, there is a big &quot;line feed&quot; after the &quot;this is a test&quot; line, how can I remove that, or can I?
 
This will make the space smaller between the &quot;This is a test&quot; and the list:

<table cellpadding=&quot;1&quot; cellspacing=&quot;1&quot; border=&quot;0&quot;>
<tr><td>
This is a test
<ul style=&quot;margin:0;&quot;>
<li>test1
<li>test2
<li>test3
</ul>
</td></tr>
</table>

Rick

-----------------------------------------------------------
RISTMO Designs
Arab Church
 
..I think this will help...

<ul style=&quot;display:inline&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top