Customize the presentation of the HTML table that contains the output from PROC PRINT. This CLASS statement changes the presentation of the HTML table that contains the output from PROC PRINT. The background color, the kind of box that surrounds the table, and the cell padding remain the same as in Styles.Default, but all the other attributes are changed. RULES=COLS draws rules only between the columns of the table. CELLSPACING=0 removes the spacing between the cells of the table so that the data appear on a continuous background. BORDERWIDTH= increases the width of the table's border. The changes dramatically alter the appearance of the HTML output.


   class table /
      rules=cols
      cellspacing=0
      borderwidth=5;