Re: HTML table 'rows' wrapping instead of scrolling..... FIXED
- Posted by Philip Deets <philip1987 at hotmail.com> Aug 04, 2004
- 421 views
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