Posted on: 10/21/2014 3:15:24 PM | Views : 382

I am working on a web forms application.  I have a table that is within a parent <td> tag. I need the borders on the bottom of each row in the table with in the parent <td> tag.  Borders show, but it shows a white space in between the child <td> tag. Is there any way to fix this? Or how would I have it span the entire bottom of the row. I tried putting the code in the <tr> tag, but it did not work.
Basically I want a line to span the full length under Cell One and Cell Two. If you run this code, you can see there is a white space at the start, middle and end - when I want it to span the entire length.
 
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="FixHtmlTableBorderSpacing.Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml ...

Go to the complete details ...