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 (May 2006, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 24 May 2006 08:52:15 -0400
Reply-To:     Hari Nath <hari_s_nath@YAHOO.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Hari Nath <hari_s_nath@YAHOO.COM>
Subject:      simple title question within ODS HTML

Hi all, In the html output, as far as I have read from sas notes - it says that there exists no space between titles unlike the listing output with increment titles. but the following code outputs html output with space between titles...is that right or am i going wrong anywhere....please clarify this..... thanks all hari

ods listing close ; ods html file = 'temp.htm';

proc print data=test ; by name ; sum score ; title1 'why there is a space' ; title3 'between title1 and title3 in html output' ; run ;

ods html close ; ods listing ;


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