HTML <hr> Tag

Description:

The <hr> tag is used for creating a horizontal line.

 

Specific Attributes:

Attribute Definition
align Specifies the alignment of a hr element.
noshade Specifies that a hr element should render in one solid color (noshaded), instead of a shaded color.
size Specifies the height of a hr element.
width Specifies the width of a hr element.

Other Attributes:

Attribute Definition
dir

Specifies the text direction for the content in an element.
Possible Values:

  • rtl  (Right to Left)
  • ltr  (Left to Right)
class Specifies a classname for an element.
id Specifies a unique id for an element.
lang Specifies a language code for the content in an element.
title Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip").
style Specifies an inline style for an element.

Example Code:

<p>This is some text.</p>
<hr />
<p>This is some text.</p>

Result

This is some text.


This is some text.