This STYLE 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. The border color that the default style definition uses is replaced by BORDERCOLORDARK= and BORDERCOLORLIGHT=, and BORDERWIDTH= increases the width of the table's border. The changes dramatically alter the appearance of the HTML output.
   style table from table /
      rules=cols
      cellspacing=0
      bordercolorlight=colors("headerfg")
      bordercolordark=colors("systitlefg")
      borderwidth=5;