Usage Note 23325: How can I change the style information for the byline in ODS HTML output?
To change the style information for the bylines, modify the style element Byline. To change the width, the spacing, or the line around the borders of the byline, modify the style element BylineContainer.
proc template;
define style styles.test;
parent=styles.default;
style byline from byline /
background=red
font_size=2
foreground=green;
end;
run;
ods html file='temp.html' style=styles.test;
proc sort data=sashelp.class;
by sex;
run;
proc print data=sashelp.class;
by sex;
run;
ods html close;
See also the full SAS Notes and Concepts for ODS.
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: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2009-07-15 10:51:41 |
| Date Created: | 2003-08-07 15:12:21 |