Annoying Table Thing

liunx

Guest
Hi, new here. Anyways...<br />
<br />
I was wondering... you know tables without any text are thinner than ones with text? How can I do that so when I put text in the table, the borders don't double thicken?<br />
<br />
Here's my code just in case:<br />
<br />
<br />
<html><br />
<head><br />
<title><br />
Visual Design Computers - Intel Computers<br />
</title><br />
</head><br />
<body text=1D71E3><br />
<br />
<center><br />
<table border=1 bordercolor=4970A6 width=640 cellspacing=0 cellpadding=0><br />
<tr height=150><br />
<td><br />
</td><br />
</tr><br />
<tr><br />
<td><font face=verdana size=1>Computers<br />
</td><br />
</tr><br />
</table><br />
<br />
<br />
<br />
</body><br />
</html><br />
<br />
<br />
Thank you very much.<!--content-->I'm not sure what you're talking about, but here's a valid version of your code. Maybe it will change something. I was not able to understand the font size you set for the second table data, so I discarded it.<br />
<br />
<br />
<html><br />
<head><br />
<title>Visual Design Computers - Intel Computers</title><br />
</head><br />
<body style="color:#1D71E3;"><br />
<table style="border:solid 1px #4970A6; width:640px;" cellspacing="0" cellpadding="0"><br />
<tr height="150"><br />
<td></td><br />
</tr><br />
<tr><br />
<td style="font-family:verdana;">Computers</td><br />
</tr><br />
</table><br />
</body><br />
</html><!--content-->Yes, that was it. Thank you.<!--content-->
 
Back
Top