Change the attributes of the style element TitlesandFooters. This CLASS statement adds to the child style the style element TitlesandFooters, which also exists in the parent style. By using the CLASS statement, you do not need to specify the FROM option. The style attributes in the new instance of TitlesandFooters override the style attributes from the parent style element, which is TitlesandFooters from Styles.Default. The new instance of TitlesandFooters will pass its attributes to any style element that inherits from it. This style element uses systitlefg and systitlebg for colors, but it changes the font size from the relative size of 4 that is specified in TitleFont2 to a relative size of 3. As a result, the titles and footnotes in HTML Output from PROC PRINT with the Customized Style are smaller than the ones in HTML Output from PROC PRINT Using the Default Style.


   class titlesandfooters/
      color=colors("systitlefg")
      backgroundcolor=colors("systitlebg")
      font=fonts("titlefont2") fontsize=3;