Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hide row borders 1

Status
Not open for further replies.

occas

Technical User
Jan 14, 2004
164
US
how can i have only the outside border of a table showing?
also i have noticed and i think nesting tables is not good style, if i have a table nested in a table, there is space margin between the 2. at the top. cellspacing and padding both set to 0.
ty.
 
With CSS there's no problem:
Code:
<table style=&quot;border: 1px solid black;&quot;>
 <tr>
  <td>This table</td>
  <td>has</td>
 </tr>
 <tr>
  <td>border around</td>
  <td>it</td>
 </tr>
</table>
Regarding what you noticed, that shouldn't happen.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top