Draws lines of text as a bulleted list.
HTML Syntax
<UL CLASS=classname ID=value LANG=language LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS STYLE=css1-properties TITLE=text TYPE=DISC | CIRCLE | SQUARE event = script >
Remarks
The TYPE attribute sets the list type for all ensuing lists unless a different type value is set.
The UL element inherits its line-height from the height of the font attribute for the BODY. For example, if the font-size attribute for the BODY is larger than the font-size attribute for the UL element, the list items in the UL are spaced according to the font-size of the BODY.
The UL element is a block element and requires a closing tag.
This element is available in HTML as of Microsoft® Internet Explorer 3.0, and in script as of Internet Explorer 4.0.
Members
Styles
Example
This example uses the UL element to create a bulleted list.
<UL> <LI>This is the first bulleted item in the list. <LI>And this is the second bulleted item in the list. </UL>
See Also