DIV (Division) TAG and ATTRIBUTES

<DIV></DIV>

This element indicates a block of document content, which should be treated as a logical unit.


ATTRIBUTES

ALIGN = "CENTER | JUSTIFY | LEFT | RIGHT"
CLASS = "class name(s)"
STYLE = "style information"

EVENTS

onclick
ondblclick
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup


ALIGN  This attribute defines how the tagged text should be horizontally aligned on the page. The default value is LEFT. Other values include CENTER, JUSTIFY and RIGHT.

CLASS  See Cascading Style Sheets (CSS) Information.

STYLE  See Cascading Style Sheets (CSS) information.

Back to Top