Usage Note 23383: How can I remove the borders from around the table and the cells in ODS HTML output?
Using the FRAME=VOID attribute removes the borders from around the table. Using the RULES=NONE attribute removes the border from between the headers and the data values. To blend perfectly, you might want to use the HTML page background color for the background color of both the headers and the cells. The attribute CELLSPACING=0 removes the space around the cells.
View output.
proc template;
define style styles.temp;
parent=styles.default;
style Table from Output /
cellspacing=0
frame=void
RULES=NONE;
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:34:19 |
| Date Created: | 2003-08-12 16:47:51 |