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 ;
|