Attribute of <CODE> Tag
Attribute of <CODE> Tag
CLASS
Indicates which style class applies to the <CODE> element.
Example:<CODE CLASS="casual">x++;</CODE>
Possible Values
Class Name.
ID
Assigns a unique ID selector to an instance of the <CODE> tag. When you then assign a style to that ID selector, it affects only that one instance of the <CODE> tag.
Example:<CODE ID="123">while(x) x-;</CODE>
Possible Values
ID Name.
STYLE
Specifies Style Sheet commands that apply to the contents within the <CODE> tags.
Example:<BODY STYLE="background: red">
Possible Values
CSS Property with value.
TITLE
Specifies text assigned to the tag. You might use this attribute for context-sensitive help within the document. Browsers may use this to show tool tips over the code text.
Example:<CODE TITLE="C Code">exit(1);</CODE>
Possible Values
Any Text Message.