 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
RolinB
Joined: 03 Nov 2007 Posts: 2
|
Posted: Sat Nov 03, 2007 10:09 pm Table wit extra tiny line |
|
|
|
well i got a table and
111111111111
113333333311
113000000311
113333333311
111111111111
the 1's is my first table
the 0's just empty space
but i have the 3 all arround in my table ( a tiny line ) that i want to take off but dont know how
im sure its like an option to turn off |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8265 Location: Castle Rock CO USA
|
|
RolinB
Joined: 03 Nov 2007 Posts: 2
|
Posted: Sun Nov 04, 2007 12:01 pm |
|
|
|
Um you mean this
| Code: |
<table border="3" width="100" Height="100">
<tr>
<td>Cell 1</td>
</tr>
</table>
|
|
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8265 Location: Castle Rock CO USA
|
|
l1nd4y4p
Joined: 04 Dec 2007 Posts: 3
|
Posted: Wed Dec 05, 2007 12:02 am |
|
|
|
when the border = 1 and cellspace = 1, then the table will looks like have double line or one table inside another. how to have only 1 line?
when border = 1 the looks like =================
how to make it like ___________________ ? |
|
sticks464
Joined: 31 Dec 2006 Posts: 1116
|
Posted: Wed Dec 05, 2007 5:20 am |
|
|
|
I'm having a hard time envisioning what you want, but this is how I remove borders. Put this in the head section
| Code: |
<style type="text/css">
td, tr {
border:none;
}
</style> |
html
| Code: |
<table width="100" height="100" border="4" cellspacing="0" cellpadding="4">
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>3</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>3</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>3</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
</table> |
|
|
l1nd4y4p
Joined: 04 Dec 2007 Posts: 3
|
Posted: Wed Dec 05, 2007 8:23 pm |
|
|
|
yes this is what i want. thanks
but what's the purpose of below script:
<style type="text/css">
td, tr {
border:none;
}
</style> |
|
sticks464
Joined: 31 Dec 2006 Posts: 1116
|
Posted: Wed Dec 05, 2007 8:29 pm |
|
|
|
| That's what removes the border. |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|