Usage Note 23340: For ODS HTML output, how can I remove the horizontal rule and the spacing between the procedures?
The spacing and the horizontal rule simulate a page break.
You can remove them by using PROC TEMPLATE and
setting the PAGEBREAKHTML= attribute to _UNDEF_. This argument treats the
attribute as if it had never been set.
proc template;
define style styles.nobreak;
parent=styles.default;
style Body from Body /
Pagebreakhtml=_undef_;
end;
run;
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: | 2003-09-22 11:25:05 |
| Date Created: | 2003-08-07 17:45:31 |