The first method is to define a style for the HTML <body> tag. This will affect everything beneath the Body element without further ado.
BODY
{
background-color : OldLace;
}
The second approach is to define a class (which always starts with a “.”)
.ReportStyle
{
background-color : OldLace;
}
Add this class to your style sheet and specifically apply that class to the appropriate element in the report:
Figure 4.6: Attributes Panel after setting Report element Class attribute |
Go ahead and make this assignment in your report definition. Note that the same style sheet and style class should be applied to any sub-report (i.e. the Chapter3SubReport).
No comments:
Post a Comment