Usage Note 23487: In ODS HTML output, why don't my table borders show up with Netscape?
This is because the default is RULE=GROUPS
within the TABLE style element, which tells the browser to add a rule
after the header. The output looks a lot better in Explorer than in Netscape. To get the output in Netscape to display the
rules, change the attribute to RULES=ALL. Below is an example.
proc template;
define style styles.test;
parent=styles.default;
style table from table /
rules=all;
end;
run;
ods html file="temp.html" style=styles.test;
proc print data=sashelp.class;
run;
ods html close;
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-10-22 10:43:41 |
| Date Created: | 2003-10-22 10:43:05 |