HTML DOM HR Object

The HR object represents an HTML <hr> element

HR Object

The HR object represents an HTML <hr> element.

Access a HR Object

You can access a <hr> element by using getElementById():

Example

var x = document.getElementById("myHR");

Create a HR Object

You can create a <hr> element by using the document.createElement() method:

Example

var x = document.createElement("HR");

HR Object Properties

Property Description
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the alignment of a horizontal line
color Not supported in HTML5. Use style.color instead.
Sets or returns the color of a horizontal line
noshade Not supported in HTML5.
Sets or returns whether a horizontal line should render in one solid color (noshaded)
size Not supported in HTML5. Use style.height instead.
Sets or returns the height of a horizontal line
width Not supported in HTML5. Use style.width instead.
Sets or returns the width of a horizontal line

Standard Properties and Events

The HR object also supports the standard properties and events.

Related Pages

HTML reference: HTML <hr> tag