|
||
It's Not Just Help. . . So How Does It Work? HTML Topics & Templates CSS DHTML Project File (.hhp) Contents File (.hhc) Merging Modular Files Accelerating Links Distribution & Installation HTML Help Resources on the Web |
Types of CSSCascading style sheets are simply lines of ASCII text describing properties (such as font-family, text-align, color) of individual HTML elements (such as paragraphs <P>, headings <H1>, and anchoring links <A>). These lines of ASCII text can be stored in various locations, depending on the type of style sheet. HTML Help works best with the following three types:
The CSS recommendations include a fourth type—imported style sheets—theoretically supported by IE 4 and above. However, in practice, imported style sheets are difficult to implement and don’t really add any functionality not covered by linked style sheets. The cascadeIf a single HTML file contains multiple types of style sheets, the “cascading” aspect determines which style sheet type takes precedence. Simply stated, inline style sheets override all others, followed by embedded and then linked style sheets.
|