Usage Note 23321: How can I change the cellspacing color that separates the cells in the table in ODS HTML output?
You can change the cellspacing color that separates the cells in the table by changing the value associated with the string "bgA1" in the color_list, or by modifying the table background with the Table style element.
View output.
proc template;
define style style.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 /
/* change this to black */
background=black
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:22 |
| Date Created: | 2003-08-06 16:18:45 |