View Single Post
Join Date: Dec 2008
Posts: 63
Reputation: cfajohnson is an unknown quantity at this point 
Solved Threads: 13
cfajohnson cfajohnson is offline Offline
Junior Poster in Training

Re: Table cells have small gap between them that I want to get rid of

 
0
  #2
Jan 12th, 2009
Originally Posted by VernonDozier View Post
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">

Why XHTML and why transitional?
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  3. <title>Table Experiment</title>
  4. <style type="text/css">
  5. <!--
  6.  

The HTML comment hasn't been necessary since Netscape 4.
  1. body {
  2. background-color: #FFFFFF;
  3. }
  1. table
  2. {
  3. border-collapse: collapse;
  4. }
Reply With Quote