STYLE - style definition
Description
The STYLE tag
specifies a style sheet. Inside <STYLE> and </STYLE>
you can specify styles for elements, define classes and IDs, and
generally establish styles for use within the document.
There are two types of style sheets: JavaScript style sheets and
Cascading Style Sheets (CSS). To specify that the style sheet is
JavaScript, the value of the TYPE attribute is "text/javascript".
The default value of TYPE is "text/css".
You would normally use the STYLE tag within the <HEAD> and
</HEAD> tags.
Syntax
<STYLE TYPE="stylesheetType">....</STYLE>
Attributes
TYPE = specifies either a JavaScript style sheet
or a cascading style sheet (CSS). The value can be "text/css"
for cascading style sheets, or "text/javascript" for
JavaScript style sheets.
|