Delete the outer line of a table

liunx

Guest
I've made a table with HTML code, my question is if it is possible to delete (or make invisible for te visitors of my webpage) the outer line of the table? If you don't exactly understand my explanaition, please see my picture, you'll understand.<br />
<br />
Thnx NELES<br />
<br />
<br />
This is the table:<br />
<br />
================= Outer line<br />
--------------------------- Inner lines<br />
| <br />
| <br />
---------------------------<!--content--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Example</title><br />
<table rules="all" frame="void" border="1" cellspacing="0"><br />
<tr><br />
<th>Heading</th><br />
<th>Heading</th><br />
<th>Heading</th><br />
</tr><br />
<tr><br />
<td>Data</td><br />
<td>Data</td><br />
<td>Data</td><br />
</tr><br />
<tr><br />
<td>Data</td><br />
<td>Data</td><br />
<td>Data</td><br />
</tr><br />
<tr><br />
<td>Data</td><br />
<td>Data</td><br />
<td>Data</td><br />
</tr><br />
</table><br />
<br />
And see <!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/tables.html#h-11.3.1">http://www.w3.org/TR/html4/struct/tables.html#h-11.3.1</a><!-- m -->. is not exactly what I what I want to have. As you can see on:This Site (<!-- m --><a class="postlink" href="http://members.home.nl/p.nelen/Onder.html">http://members.home.nl/p.nelen/Onder.html</a><!-- m -->) <br />
I have made a table this table consists out of boxes and a frameborder around it. I want to get rid(or make invisible for the visitors)of this border. How can I do that?<!--content-->1) You are not supposed to use TABLEs for layout.<br />
<br />
2) My example does exactly what I understand that you want. What am I missing?<!--content-->I would like squares around my text now I only get 2 straight lines around my textbox<!--content-->You're still not being clear, but I think that you might want to try increasing the size of the "cellspacing".<!--content-->I'm going to take a stab in the dark here. It looks like how the border is done, that the border makes it look like there is two different borders around things, and they only want one. Here's a non finalized version of my answer. I would continue to use more CSS and get rid of even more code, ideally the tables all together, but anyway.<br />
<br />
In your <head> tag.<br />
<br />
<style><br />
<!--<br />
td { border:1px solid #000; }<br />
--><br />
</style><br />
<br />
New code for <table> tag.<br />
<br />
<table><br />
<tr><br />
<td align="center"><img src=http://www.webdeveloper.com/forum/archive/index.php/"heineken.jpg" width="205" height="153" alt="Heineken" border="0"></td> <td valign="top"><h3>Site gaar</h3><br />
<br />
site laat sommige foto's niet meer zien, kunne wij ook niet veel aandoen maar er komt erg snel de vernieuwde adfundum</td> <br />
<tr><br />
<td valign="top"><h3>Laatste Update</h3><b>23 Juni:</b> Site geheel vernieuwd. Met dank aan <i>Neles</i></td> <td valign="top"><h3>Gewoon ff een weetje......</h3><br />
Feest in de Bobbies is goedgekeurt door 4 adfundumleden, helaas kon de laatste er niet bij zijn, maar Alexander, Maurice, Ger, Michiel hebben het feest zeer zeker goedgekeurt, dat gebeurde op het biergehalte en vrouwgehalte en dat was allebei heel goed:D</td> <br />
</tr><br />
<tr><br />
<td valign="top"><h3>Opmerking van het weekend:</h3><br />
<br />
Soms leuk een vrouw, maar uit eindelijk kom je altijd weer terug op de pilsner, die laat je nooit in de steek....hele sterke opmerking---->Frank<br />
</td> <td></td> <br />
</tr><br />
<table><!--content-->you're great that's exactly what I want.<br />
<br />
Thnx<!--content-->
 
Back
Top