Re: HTML table 'rows' wrapping instead of scrolling..... FIXED
- Posted by Philip Deets <philip1987 at hotmail.com> Aug 04, 2004
- 443 views
Philip Deets wrote: > > Here's some html that works the way you want it too. It uses CSS and > is XHTML complient except it does not have the xmlns attribute on the > html element and it has no DOCTYPE on it. Hope that's ok. > > The trick was setting the table width to a large number. > > <html> > <head> > <title>Blues Remits Splitter</title> > </head> > > <body style="color:Blue"> > <div style="text-align:center"> > <h1>Blues Remittances for 7/28/04</h1> > <table style="width:2000px; border:1px; background-color:#ff8888"> > <tr> > <th>Received Date</th> > <th>Provider</th> > <th>Svc Year</th> > <th>Account #</th> > <th>Last Name</th> > <th>First Name</th> > <th>Mid Init</th> > <th>Sub Last Name</th> > <th>Sub First Name</th> > <th>Sub Mid Init</th> > <th>Date of Birth</th> > <th>HIC Number</th> > <th>Location</th> > <th>Fin Class</th> > </tr> > </table> > </div> > </body> > </html> > > Hope this is what you want, > Phil > Sorry, I didn't notice you already solved the problem. But I still think you ought to use CSS and XHTML. To learn these technologies, I would suggest http://www.w3schools.com . It has lots of excellent tutorials on web design. Phil P.S. I am a programmer, but I kind of like web design better than programming.