Jump to content

Random break line.


sepoto

Recommended Posts

There is a break line right after the table and still inside the div with the parchment paper background. I don't really see how to remove it. Thanks very much for the help.

	<div style='width: 600px; min-height: 100px; border: solid 1px black; background-image: url(images/parchmentpaper-og.jpg); margin: 0; padding: 0;'>	<table style='border: solid 1px black; width: 600px; margin: 0; padding: 0;'>	<?php		for($int=0;$int<sizeof($all);++$int)		{			if(sizeof($all[$int])>1) {			echo "<tr>";			for($cnt=0;$cnt<sizeof($all[$int]);++$cnt) {				echo "<td style='border: solid 1px black'>";				echo $all[$int][$cnt];				echo "</td>";			}			echo "</tr>";			}					}		?>		</table>	</div>	</div>

Link to comment
Share on other sites

Are you talking about what you see when you view source, or some actual space in the rendered document?
There is an actual break line after the table when I view in my web browser.
Link to comment
Share on other sites

I'm not sure why you call it a line break instead of empty space.
Ahhhh!!! The min-height is what is doing it! I thought it was a line break! Thank you!
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...