Usage Note 23384: In ODS HTML output, how can I remove all of the borders except between the column headers and the observations?
The example code in FAQ 3288
can be modified. To remove all of the borders except the the one between the headers and the observations, specify RULES=GROUPS.
proc template;
define style styles.temp;
parent=styles.default;
style Table from Document /
cellspacing=0
frame=void
RULES=GROUPS;
style Header from HeadersAndFooters /
/* Blend headers */
background=color_list('bgA');
style Data From Data /
/* Blend data background */
background=color_list('bgA');
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 10:27:41 |
| Date Created: | 2003-08-12 16:56:14 |