Reputation: 55
I don't want a border around a background image yet there is a white thin line around it, how can I remove it.
I tried border:0;
but didn't work. Here is what I have:
td.header
{
background-color: #003;
background-image: url(header2.jpg);
margin: 0px;
padding: 0px;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
height: 162px;
width: 1000px;
}
What should I put into this to not have it show?
Upvotes: 1
Views: 7394
Reputation: 952
add this:
table {
border-collapse: collapse;
border-spacing: 0;
}
Upvotes: 2
Reputation: 4200
Maybe border: none;
works instead?
http://www.w3.org/TR/CSS2/box.html#border-properties
Upvotes: -1