Question about tables...

liunx

Guest
What does &nsbp; mean??<br />
<br />
Is this code right:<br />
<br />
<TABLE><TR><TD> </TD></TR><TD> <TR> </TD></TR></TABLE> <br />
<br />
Cheers <br />
<br />
HG<br />
P.S. Spaces indicate where text goes<!--content-->&nbsp; means 'Non Breaking SPace' and is the equivalent of a carriage return between paragraphs.<br />
<br />
Your table tags are somewhat mixed up. Try:<br />
<br />
<table><br />
<tr><br />
<td><br />
-- put text here --<br />
</td><br />
</tr><br />
<br />
<tr><br />
<td><br />
-- put text here --<br />
</td><br />
</tr><br />
<br />
</table><br />
<br />
Remember that you have to open and close the tags in a hierachy.<br />
Putting tags on separate lines helps in deciphering code....<br />
<br />
- Tatlar<!--content-->also the & nbsp; is usefull when youre testing tables as tables will collapse w/ nothing in them.<br />
<br />
<table><br />
<tr><td>& nbsp;</td></tr><br />
</table><br />
:pimp:<!--content-->Thanks for your hrlp ;)<!--content-->
 
Back
Top