The HTML <hr> tag is used for creating a horizontal line. This is also called Horizontal Rule in HTML.
<!DOCTYPE html> <html> <head> <title>HTML hr Tag</title> </head> <body> <p>This text will be followed by a horizontal line <hr /></p> </body> </html>
This will produce the following result −
This tag supports all the global attributes described in − HTML Attribute Reference
The HTML <hr> tag also supports following additional attributes −
Attribute | Value | Description |
---|---|---|
align | left right center |
Deprecated − Specifies the alignment of the horizontal rule. |
noshade | noshade | Deprecated − Removes the usual shading effect that most browsers display. |
size | pixels or % | Deprecated − Specifies the height of the horizontal rule. |
width | pixels or % | Deprecated − Specifies the width of the horizontal rule. |
This tag supports all the event attributes described in − HTML Events Reference
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | Yes |