Usage Note 23565: In ODS HTML, how can I simulate the MOVE= title option from SAS/GRAPH software?
The MOVE= title option from SAS/GRAPH software is not valid with with ODS titles. You do not get an error, but the option is simply ignored. To simulate the MOVE= title option, use the CSS style property Position to specify where the title or footnote should be placed. For instance, the below code specifies that the footnote is placed .2in from the top of the title and .2in from the left of the page.
ods html file='temp.html';
proc print data=sashelp.class;
footnote '<div style="position:absolute;top:.2in;
left:.2in">This is my
footnote</div>';
run;
ods html close;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | SAS Reference ==> ODS (Output Delivery System) Third Party ==> Output ==> HTML
|
| Date Modified: | 2004-01-09 11:32:05 |
| Date Created: | 2003-11-04 16:23:00 |