LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2000, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 28 Apr 2000 20:00:23 +0200
Reply-To:     Benjamin Guralnik <guralnik@BEZEQINT.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Benjamin Guralnik <guralnik@BEZEQINT.NET>
Subject:      Re: htm list or table
Comments: cc: "Fehd, Ronald J." <rjf2@CDC.GOV>
Content-type: text/plain; charset="iso-8859-1"

Ron,

> I would like to have this written in a table so the Counts line up > anyone know enough HTML to give me a clue as to how to write a table and row > definition?

<table> <thead> <!-- table header --> <tr> <!-- defines a row --> <th>Header 1</th> <!-- defines a header column --> <th>Header 2</th> </tr> </thead> <tbody> <!-- the actual content --> <tr> <!-- row 1 --> <td>Column 1</td> <!-- defines a regular column --> <td>Column 2</td> </tr> <tr> <!-- row 2 --> <td>Column 1</td> <td>Column 2</td> </tr> </tbody> </table>

Now, I guess you'd have to drop the <li> things, because I've never seen a combination of a table and a hierarchical list. (Use <div> or <span> instead -- the commonest "container" tags.)

If, for some reason, you need the report to be hierarchical (V8 "results"-like), I guess you'll have to embed tables inside tables -- which is pretty easy too, but in order to save your time, just ask for a ready example.

Hope this helps, Benjamin


Back to: Top of message | Previous page | Main SAS-L page