Removing table lines and table space between cells in css

abcde123483 picture abcde123483 · Jun 30, 2011 · Viewed 15.7k times · Source

I have this site: http://redditlist.com/dir/1026 and I'm stuck on trying to remove spacing between cells so it will look more like this: http://redditlist.com.

Answer

Jaspero picture Jaspero · Jun 30, 2011
table#myTable{
  border-collapse:collapse;
}