Monday, February 24, 2014

Controlling the Report Presentation - Changing the font on a report

Changing the font on a report is accomplished by specifying the font-family style property.

.ReportStyle
{
   background-color : OldLace;
   font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
}

Fonts are often specified in a prioritized list, arranged from highest to lowest priority, to indicate alternate fonts to be used in case a particular font is not installed on the machine.

No comments:

Post a Comment