Usage Note 23322: How can I change the color of the borders around the table in ODS HTML output?
The borders around the table can be changed by modifying
the argument associated with the string "fgA1" in the color_list, or by modifying the style element Table directly by specifying an argument to the BORDERCOLOR= attribute. View output.
proc template;
define style styles.colors;
parent=styles.default;
style Body from Document /
background=black;
style Data from Cell /
background=cx8e2323;
style Header from HeadersAndFooters /
background=cxcd7f32;
style Table from Output /
background=black
/* change to yellow */
bordercolor=cxb5a642;
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: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System)
|
| Date Modified: | 2003-09-22 11:28:37 |
| Date Created: | 2003-08-06 16:35:56 |