Link to home
Start Free TrialLog in
Avatar of tenriquez199
tenriquez199

asked on

how skip grey lines between table cells at a html file

hi

i have an html file, i have a table with some details.

i set 4 cells with blank bakcground , but includin there are a grey line

someone could help me to skip its

thanks a lot
PROBLEM-LINE-BETWEEN-CELLS.JPG
index.html
Avatar of Patrick Tallarico
Patrick Tallarico
Flag of United States of America image

The problem lies in that your background is showing through between the 'cells' of your table.

You could add a background color to your table element
<table ... style="background-color:#ffffff" ...>
or move the <tr> elements closer together by modifying their position and or removing any margin or padding that may be happening.

css:
tr {
...
padding:0px;
margin:0px;
...
}

If I were coding this from scratch, I would look to use a div, position absolute in reference to the background pic, and create the table inside of the div with cells and table background of the same color.
ASKER CERTIFIED SOLUTION
Avatar of tenriquez199
tenriquez199

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tenriquez199
tenriquez199

ASKER

i solve it my self thanks a lot