Re: HTML table 'rows' wrapping instead of scrolling.....
- Posted by irv mullins <irvm at ellijay.com> Aug 03, 2004
- 459 views
If you want it to validate, you'll need a few more things. I don't know if the following html will make it thru to the list, but let's try: You'll need to add a doctype, need a closing tag for the head, a closing tag for center, closing tags for body and html, plus I think those are supposed to be table headers th, not td's. Irv Let's see how much of this corrected html gets thru: Here goes: <!DOCTYPE html PUBliC "-//W3C//DTD html 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>Blues Remits Splitter</title> </head> <body text="blue"> <center> <h1>Blues Remittances for 7/28/04</h1> <table border="1" bgcolor="pink"> <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> </center> </body> </html>