[web] Removed nested tables' borders?

Started by
1 comment, last by BeanDog 18 years, 4 months ago
I have nested tables on my page, and I'm getting about a 2px gap between the edge of the inside table and the edge of the outer table, where the background color of the outer table shows through. For an easy example, check out http://www.beandogsoft.com/test.htm. Notice the lighter-colored border to the left and bottom of the menu bar. How do I get rid of that? ~BenDilts( void );
Advertisement
Change the following:
<table class="MainPage" cellpadding="0">

To:
<table class="MainPage" cellpadding="0" cellspacing="0">
Perfect! Thanks.

This topic is closed to new replies.

Advertisement