How can i make a table with outlines. something like that:
<!-- m --><a class="postlink" href="http://damianhagger.com/bio.php">http://damianhagger.com/bio.php</a><!-- m -->
I'm talking only about the lines of the TD's and not the different colors for each TR.
Thanks!<td style="border:5px solid #ffffff">
like that I guess? That site you just saw more likely put a margin between each cell, But I am too lazy to look at their source.
<style type="text/css">
td {
margin:5px;
}
</style>
<table style="background-color:#fff">
<tr>
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<table>
try something like that....?To put it simply. In your main table tags. Simply isert this code somewhere in the start tag.
style="border: 8px solid #fff;
I.e you would end up with something like this:
<table wdith="500" height="500" style="border: 8px solid #fff;">
<tr>
<td>
</td>
</tr>
</table>
I hope that helps.
Best Wishes,
DavidI have thought of another way you could accomplish your problem. This is yet to be tested by myself.
<div style="border: 8px solid #fff;">
<table>
table stuff blah blah blah
</table>
</div>figure something out...
Thanks guys!No problem. Just say if you have any other problems.
Best Wishes,
David<style type="text/css">
table {
border-collapse: collapse;
}
td {
border: 1px solid #aaa;
}
</style>simple and easy!
<!-- m --><a class="postlink" href="http://damianhagger.com/bio.php">http://damianhagger.com/bio.php</a><!-- m -->
I'm talking only about the lines of the TD's and not the different colors for each TR.
Thanks!<td style="border:5px solid #ffffff">
like that I guess? That site you just saw more likely put a margin between each cell, But I am too lazy to look at their source.
<style type="text/css">
td {
margin:5px;
}
</style>
<table style="background-color:#fff">
<tr>
<td>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<table>
try something like that....?To put it simply. In your main table tags. Simply isert this code somewhere in the start tag.
style="border: 8px solid #fff;
I.e you would end up with something like this:
<table wdith="500" height="500" style="border: 8px solid #fff;">
<tr>
<td>
</td>
</tr>
</table>
I hope that helps.
Best Wishes,
DavidI have thought of another way you could accomplish your problem. This is yet to be tested by myself.
<div style="border: 8px solid #fff;">
<table>
table stuff blah blah blah
</table>
</div>figure something out...
Thanks guys!No problem. Just say if you have any other problems.
Best Wishes,
David<style type="text/css">
table {
border-collapse: collapse;
}
td {
border: 1px solid #aaa;
}
</style>simple and easy!