<HR>
Draw a horizontal rule.
<!ELEMENT HR - O EMPTY -- horizontal rule -->
<!ATTLIST HR
%coreattrs; -- id, class, style, title --
%events;
>
from the HTML 4.0 DTD,
"Copyright ©
World Wide Web Consortium,
(Massachusetts Institute of Technology,
Institut National de Recherche en Informatique et en Automatique,
Keio University).
All Rights Reserved."
Core attributes:
class
id
style
title
Events:
onclick
ondblclick
onmousedown
onmouseup
onmouseover
onmousemove
onmouseout
onkeypress
onkeydown
onkeyup
ALIGN
Align the rule. Possible values are CENTER, LEFT and RIGHT. Default is
align="center".
COLOR
Draw the rule in a specific color.
INVERTBORDER
Use the invertborder attribute to draw a horizontal rule that seems raised from
the surface of the page. By default, when the invertborder attribute is not
set, the horizontal rule is drawn embossed into the surface of the page.
NOSHADE
Do not use a 3d-effect to draw the rule.
SIZE
Define the height of the rule in pixels.
WIDTH
Define the width of the rule. Values can be given in pixels or percentage of
the available width between the current left and right margins.
 |
<HR size="10">
<HR size="7">
<HR size="4">
|
|
 |
|
|
 |
<HR width="50%" align="left">
|
|
 |
|
|
 |
<HR color="#0000ff" noshade size="5">
|
|
 |
|